:root {
  --blue: #0052ff;
  --blue-dim: rgba(0, 82, 255, 0.08);
  --blue-border: rgba(0, 82, 255, 0.18);
  --green: #16a34a;
  --text: #07111f;
  --muted: #7a879f;
  --border: #e8edf5;
}

/* ── SHELL ── */
.dwh {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 66px 0 0;
  margin-bottom: 0;
}
.dwh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dwh-bg-dot {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 82, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 65% 80% at 72% 50%, black 0%, transparent 75%);
}
.dwh-bg-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.07) 0%, transparent 65%);
  border-radius: 50%;
}

/* ── LAYOUT ── */
.dwh-wrap {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px 56px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── LEFT ── */
.dwh-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dwh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  width: fit-content;
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.05s;
}
.eyebrow-pulse {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: ep 2s infinite;
}
@keyframes ep {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 82, 255, 0);
  }
}

.dwh-h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.15s;
}
.dwh-h1 mark {
  background: none;
  color: var(--blue);
  position: relative;
  display: inline;
}
.dwh-h1 mark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #3b7bff);
  border-radius: 2px;
  opacity: 0.28;
}

.dwh-sub {
  font-size: clamp(0.88rem, 1.35vw, 1.03rem);
  color: #3d4d65;
  line-height: 1.78;
  max-width: 440px;
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.25s;
}
.dwh-sub strong {
  color: var(--text);
  font-weight: 600;
}

.dwh-stats {
  display: flex;
  gap: 20px;
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.32s;
}
.dstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dstat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.dstat-num span {
  color: var(--blue);
}
.dstat-lbl {
  font-size: 0.63rem;
  font-weight: 500;
  color: var(--muted);
}
.dstat-sep {
  width: 1px;
  background: var(--border);
  margin: 4px 0;
}

.dwh-btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.38s;
}

/* ── FOMO + TRUST ROW ── */
.dwh-fomo-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both 0.44s;
}

.dwh-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}
.trust-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(22, 163, 74, 0.09);
  border: 1px solid rgba(22, 163, 74, 0.22);
  color: var(--green);
  font-weight: 700;
  font-size: 0.67rem;
  padding: 3px 9px;
  border-radius: 100px;
}
.ldot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.3s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* FOMO bar */
.dwh-fomo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #fff8f0, #fff3e0);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  width: fit-content;
}
.fomo-avatars {
  display: flex;
  margin-right: 2px;
}
.fomo-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-left: -6px;
}
.fomo-av:first-child {
  margin-left: 0;
}
.fomo-av:nth-child(1) {
  background: #0052ff;
}
.fomo-av:nth-child(2) {
  background: #f97316;
}
.fomo-av:nth-child(3) {
  background: #16a34a;
}
.fomo-av:nth-child(4) {
  background: #ef4444;
}
.fomo-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fomo-count {
  font-weight: 800;
  color: #d97706;
  font-size: 0.78rem;
}
.fomo-fire {
  font-size: 0.85rem;
  animation: fireShake 0.8s ease-in-out infinite alternate;
}
@keyframes fireShake {
  from {
    transform: rotate(-8deg) scale(1);
  }
  to {
    transform: rotate(8deg) scale(1.1);
  }
}

/* FOMO urgency ticker */
.dwh-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0f0;
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: 8px;
  padding: 6px 14px;
  width: fit-content;
  overflow: hidden;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 0.9s infinite;
}
.ticker-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #7f1d1d;
  white-space: nowrap;
}
.ticker-text strong {
  color: #dc2626;
  font-weight: 800;
}
.ticker-timer {
  font-size: 0.7rem;
  font-weight: 800;
  color: #dc2626;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* ── RIGHT ── */
.dwh-right {
  position: relative;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.08s;
}

.browser {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4f0;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.09),
    0 40px 80px rgba(0, 82, 255, 0.1);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.browser:hover {
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.browser-bar {
  background: #f3f5f9;
  border-bottom: 1px solid #dce4f0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b-dots {
  display: flex;
  gap: 5px;
}
.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.b-dot:nth-child(1) {
  background: #ff5f57;
}
.b-dot:nth-child(2) {
  background: #febc2e;
}
.b-dot:nth-child(3) {
  background: #28c840;
}
.b-url {
  flex: 1;
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.67rem;
  color: #5a6a80;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
}
.b-lock {
  color: var(--green);
  font-size: 0.6rem;
}
.b-domain {
  color: #3a4a60;
  font-weight: 500;
}
.b-domain strong {
  font-weight: 700;
  transition: color 0.3s;
}

.site-canvas {
  height: 460px;
  position: relative;
  overflow: hidden;
}
.site-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  overflow-y: auto;
  scrollbar-width: none;
}
.site-slide::-webkit-scrollbar {
  display: none;
}
.site-slide.active {
  opacity: 1;
}

.sector-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 5px;
  z-index: 20;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}
.sdot.on {
  background: var(--blue);
  width: 18px;
  border-radius: 3px;
}

.sector-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 20;
  transition: opacity 0.3s;
  pointer-events: none;
}

.s-nav {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s-nav-logo {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.s-nav-links {
  display: flex;
  gap: 12px;
}
.s-nav-link {
  font-size: 0.54rem;
  font-weight: 500;
}
.s-nav-cta {
  font-size: 0.54rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 6px;
  cursor: default;
}

.s-hero {
  padding: 28px 20px 24px;
  position: relative;
  overflow: hidden;
}
.s-hero-tag {
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.s-hero-h {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  line-height: 1.18;
  margin-bottom: 8px;
}
.s-hero-h em {
  font-style: italic;
}
.s-hero-p {
  font-size: 0.57rem;
  line-height: 1.7;
  max-width: 200px;
  margin-bottom: 13px;
}
.s-hero-btns {
  display: flex;
  gap: 7px;
}
.s-btn1 {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 6px;
  cursor: default;
  font-family: var(--font);
}
.s-btn2 {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  border: 1px solid;
  cursor: default;
  font-family: var(--font);
}
.s-hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.s-stats {
  display: flex;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.s-stat {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid;
}
.s-stat:last-child {
  border-right: none;
}
.s-stat-n {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.s-stat-l {
  font-size: 0.48rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
  font-family: var(--font);
}

.s-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 16px 18px;
}
.s-card {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid;
}
.s-card-img {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.s-card-body {
  padding: 6px 8px;
}
.s-card-name {
  font-size: 0.54rem;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: var(--font);
}
.s-card-sub {
  font-size: 0.5rem;
  font-weight: 600;
  font-family: var(--font);
}

.s-testi {
  padding: 14px 18px;
}
.s-testi-q {
  font-size: 0.58rem;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 8px;
}
.s-testi-q::before {
  content: '"';
  font-size: 0.85rem;
  font-style: normal;
}
.s-testi-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.s-testi-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.s-testi-name {
  font-size: 0.55rem;
  font-weight: 700;
}
.s-testi-role {
  font-size: 0.48rem;
}
.s-testi-stars {
  margin-left: auto;
  font-size: 0.58rem;
  color: #fbbf24;
  letter-spacing: 1px;
}

.s-form {
  padding: 14px 18px;
  border-top: 1px solid;
}
.s-form-title {
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  font-family: var(--font);
}
.s-field {
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 0.54rem;
  border: 1px solid;
  margin-bottom: 5px;
  font-family: var(--font);
}
.s-submit {
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  font-size: 0.57rem;
  font-weight: 700;
  margin-top: 3px;
  font-family: var(--font);
}

.sec-tekstil .s-nav {
  background: #07111f;
}
.sec-tekstil .s-nav-logo {
  color: #fff;
}
.sec-tekstil .s-nav-logo span {
  color: #3b7bff;
}
.sec-tekstil .s-nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.sec-tekstil .s-nav-cta {
  background: #0052ff;
  color: #fff;
}
.sec-tekstil .s-hero {
  background: linear-gradient(155deg, #07111f 0%, #0d1a35 100%);
}
.sec-tekstil .s-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 123, 255, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
}
.sec-tekstil .s-hero-tag {
  background: rgba(59, 123, 255, 0.12);
  border: 1px solid rgba(59, 123, 255, 0.3);
  color: #3b7bff;
}
.sec-tekstil .s-hero-h {
  color: #fff;
}
.sec-tekstil .s-hero-h em {
  color: #3b7bff;
}
.sec-tekstil .s-hero-p {
  color: rgba(255, 255, 255, 0.55);
}
.sec-tekstil .s-btn1 {
  background: #0052ff;
  color: #fff;
}
.sec-tekstil .s-btn2 {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}
.sec-tekstil .s-hero-visual {
  background: linear-gradient(135deg, rgba(59, 123, 255, 0.08), transparent);
}
.tek-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 18px);
  gap: 3px;
  padding: 16px;
}
.tek-cell {
  border-radius: 2px;
  background: rgba(59, 123, 255, 0.18);
}
.tek-cell:nth-child(3n) {
  background: rgba(59, 123, 255, 0.35);
}
.tek-cell:nth-child(5n) {
  background: rgba(59, 123, 255, 0.08);
}
.sec-tekstil .s-stats {
  background: #fff;
  border-color: #eef1f8;
}
.sec-tekstil .s-stat {
  border-color: #eef1f8;
}
.sec-tekstil .s-stat-n {
  color: #07111f;
}
.sec-tekstil .s-stat-n span {
  color: #0052ff;
}
.sec-tekstil .s-stat-l {
  color: #7a879f;
}
.sec-tekstil .s-cards {
  background: #f8faff;
}
.sec-tekstil .s-card {
  background: #fff;
  border-color: #eef1f8;
}
.sec-tekstil .s-card-name {
  color: #07111f;
}
.sec-tekstil .s-card-sub {
  color: #0052ff;
}
.sec-tekstil .s-testi {
  background: #07111f;
}
.sec-tekstil .s-testi-q {
  color: rgba(255, 255, 255, 0.7);
}
.sec-tekstil .s-testi-name {
  color: #fff;
}
.sec-tekstil .s-testi-role {
  color: rgba(255, 255, 255, 0.4);
}
.sec-tekstil .s-testi-av {
  background: #0052ff;
}
.sec-tekstil .s-form {
  background: #fff;
  border-color: #eef1f8;
}
.sec-tekstil .s-form-title {
  color: #07111f;
}
.sec-tekstil .s-field {
  background: #f4f6fb;
  border-color: #eef1f8;
  color: #7a879f;
}
.sec-tekstil .s-submit {
  background: #0052ff;
  color: #fff;
}

.sec-restoran .s-nav {
  background: #1a0a00;
}
.sec-restoran .s-nav-logo {
  color: #fff;
}
.sec-restoran .s-nav-logo span {
  color: #f59e0b;
}
.sec-restoran .s-nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.sec-restoran .s-nav-cta {
  background: #f59e0b;
  color: #1a0a00;
}
.sec-restoran .s-hero {
  background: linear-gradient(155deg, #1a0a00 0%, #2d1200 100%);
}
.sec-restoran .s-hero-tag {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}
.sec-restoran .s-hero-h {
  color: #fff;
}
.sec-restoran .s-hero-h em {
  color: #f59e0b;
}
.sec-restoran .s-hero-p {
  color: rgba(255, 255, 255, 0.5);
}
.sec-restoran .s-btn1 {
  background: #f59e0b;
  color: #1a0a00;
}
.sec-restoran .s-btn2 {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}
.sec-restoran .s-hero-visual {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), transparent);
}
.rest-plates {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 12px;
}
.rest-plate {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto;
}
.rest-plate:nth-child(2) {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  opacity: 0.6;
}
.sec-restoran .s-stats {
  background: #fff;
  border-color: #fef3c7;
}
.sec-restoran .s-stat {
  border-color: #fef3c7;
}
.sec-restoran .s-stat-n {
  color: #1a0a00;
}
.sec-restoran .s-stat-n span {
  color: #d97706;
}
.sec-restoran .s-stat-l {
  color: #92400e;
}
.sec-restoran .s-cards {
  background: #fffbf0;
}
.sec-restoran .s-card {
  background: #fff;
  border-color: #fde68a;
}
.sec-restoran .s-card-name {
  color: #1a0a00;
}
.sec-restoran .s-card-sub {
  color: #d97706;
}
.sec-restoran .s-testi {
  background: #1a0a00;
}
.sec-restoran .s-testi-q {
  color: rgba(255, 255, 255, 0.65);
}
.sec-restoran .s-testi-name {
  color: #fff;
}
.sec-restoran .s-testi-role {
  color: rgba(255, 255, 255, 0.4);
}
.sec-restoran .s-testi-av {
  background: #f59e0b;
}
.sec-restoran .s-form {
  background: #fff;
  border-color: #fde68a;
}
.sec-restoran .s-form-title {
  color: #1a0a00;
}
.sec-restoran .s-field {
  background: #fffbf0;
  border-color: #fde68a;
  color: #92400e;
}
.sec-restoran .s-submit {
  background: #f59e0b;
  color: #1a0a00;
}

.sec-insaat .s-nav {
  background: #0f172a;
}
.sec-insaat .s-nav-logo {
  color: #fff;
}
.sec-insaat .s-nav-logo span {
  color: #f97316;
}
.sec-insaat .s-nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.sec-insaat .s-nav-cta {
  background: #f97316;
  color: #fff;
}
.sec-insaat .s-hero {
  background: linear-gradient(155deg, #0f172a 0%, #1e293b 100%);
}
.sec-insaat .s-hero-tag {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #f97316;
}
.sec-insaat .s-hero-h {
  color: #fff;
}
.sec-insaat .s-hero-h em {
  color: #f97316;
}
.sec-insaat .s-hero-p {
  color: rgba(255, 255, 255, 0.5);
}
.sec-insaat .s-btn1 {
  background: #f97316;
  color: #fff;
}
.sec-insaat .s-btn2 {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}
.sec-insaat .s-hero-visual {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), transparent);
}
.ins-build {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: flex-end;
  height: 100%;
}
.ins-row {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.ins-block {
  border-radius: 2px;
  background: rgba(249, 115, 22, 0.25);
}
.ins-block.tall {
  background: rgba(249, 115, 22, 0.45);
}
.sec-insaat .s-stats {
  background: #fff;
  border-color: #fed7aa;
}
.sec-insaat .s-stat {
  border-color: #fed7aa;
}
.sec-insaat .s-stat-n {
  color: #0f172a;
}
.sec-insaat .s-stat-n span {
  color: #f97316;
}
.sec-insaat .s-stat-l {
  color: #7a879f;
}
.sec-insaat .s-cards {
  background: #fff7ed;
}
.sec-insaat .s-card {
  background: #fff;
  border-color: #fed7aa;
}
.sec-insaat .s-card-name {
  color: #0f172a;
}
.sec-insaat .s-card-sub {
  color: #f97316;
}
.sec-insaat .s-testi {
  background: #0f172a;
}
.sec-insaat .s-testi-q {
  color: rgba(255, 255, 255, 0.65);
}
.sec-insaat .s-testi-name {
  color: #fff;
}
.sec-insaat .s-testi-role {
  color: rgba(255, 255, 255, 0.4);
}
.sec-insaat .s-testi-av {
  background: #f97316;
}
.sec-insaat .s-form {
  background: #fff;
  border-color: #fed7aa;
}
.sec-insaat .s-form-title {
  color: #0f172a;
}
.sec-insaat .s-field {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #7a879f;
}
.sec-insaat .s-submit {
  background: #f97316;
  color: #fff;
}

.sec-avukat .s-nav {
  background: #052e16;
}
.sec-avukat .s-nav-logo {
  color: #fff;
}
.sec-avukat .s-nav-logo span {
  color: #4ade80;
}
.sec-avukat .s-nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.sec-avukat .s-nav-cta {
  background: #16a34a;
  color: #fff;
}
.sec-avukat .s-hero {
  background: linear-gradient(155deg, #052e16 0%, #064e3b 100%);
}
.sec-avukat .s-hero-tag {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
}
.sec-avukat .s-hero-h {
  color: #fff;
}
.sec-avukat .s-hero-h em {
  color: #4ade80;
}
.sec-avukat .s-hero-p {
  color: rgba(255, 255, 255, 0.5);
}
.sec-avukat .s-btn1 {
  background: #16a34a;
  color: #fff;
}
.sec-avukat .s-btn2 {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}
.sec-avukat .s-hero-visual {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), transparent);
}
.avk-visual {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.avk-doc {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.avk-doc-icon {
  font-size: 0.8rem;
}
.avk-doc-lines {
  flex: 1;
}
.avk-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  margin-bottom: 3px;
}
.avk-line.short {
  width: 60%;
}
.avk-seal {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(74, 222, 128, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #4ade80;
  flex-shrink: 0;
}
.sec-avukat .s-stats {
  background: #fff;
  border-color: #bbf7d0;
}
.sec-avukat .s-stat {
  border-color: #bbf7d0;
}
.sec-avukat .s-stat-n {
  color: #052e16;
}
.sec-avukat .s-stat-n span {
  color: #16a34a;
}
.sec-avukat .s-stat-l {
  color: #7a879f;
}
.sec-avukat .s-cards {
  background: #f0fdf4;
}
.sec-avukat .s-card {
  background: #fff;
  border-color: #bbf7d0;
}
.sec-avukat .s-card-name {
  color: #052e16;
}
.sec-avukat .s-card-sub {
  color: #16a34a;
}
.sec-avukat .s-testi {
  background: #052e16;
}
.sec-avukat .s-testi-q {
  color: rgba(255, 255, 255, 0.65);
}
.sec-avukat .s-testi-name {
  color: #fff;
}
.sec-avukat .s-testi-role {
  color: rgba(255, 255, 255, 0.4);
}
.sec-avukat .s-testi-av {
  background: #16a34a;
}
.sec-avukat .s-form {
  background: #fff;
  border-color: #bbf7d0;
}
.sec-avukat .s-form-title {
  color: #052e16;
}
.sec-avukat .s-field {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #7a879f;
}
.sec-avukat .s-submit {
  background: #16a34a;
  color: #fff;
}

.sec-oto .s-nav {
  background: #111;
}
.sec-oto .s-nav-logo {
  color: #fff;
}
.sec-oto .s-nav-logo span {
  color: #ef4444;
}
.sec-oto .s-nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.sec-oto .s-nav-cta {
  background: #ef4444;
  color: #fff;
}
.sec-oto .s-hero {
  background: linear-gradient(155deg, #111 0%, #1c1c1c 100%);
}
.sec-oto .s-hero-tag {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}
.sec-oto .s-hero-h {
  color: #fff;
}
.sec-oto .s-hero-h em {
  color: #ef4444;
}
.sec-oto .s-hero-p {
  color: rgba(255, 255, 255, 0.5);
}
.sec-oto .s-btn1 {
  background: #ef4444;
  color: #fff;
}
.sec-oto .s-btn2 {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}
.sec-oto .s-hero-visual {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
}
.oto-car {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
}
.oto-body {
  width: 100px;
  height: 40px;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  border-radius: 14px 14px 4px 4px;
  position: relative;
}
.oto-body::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -4px;
  right: -4px;
  height: 10px;
  background: #222;
  border-radius: 0 0 6px 6px;
}
.oto-wheels {
  display: flex;
  gap: 60px;
}
.oto-wheel {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #333;
  border: 3px solid #555;
}
.oto-shine {
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  margin-top: 4px;
}
.sec-oto .s-stats {
  background: #fff;
  border-color: #fecaca;
}
.sec-oto .s-stat {
  border-color: #fecaca;
}
.sec-oto .s-stat-n {
  color: #111;
}
.sec-oto .s-stat-n span {
  color: #ef4444;
}
.sec-oto .s-stat-l {
  color: #7a879f;
}
.sec-oto .s-cards {
  background: #fff5f5;
}
.sec-oto .s-card {
  background: #fff;
  border-color: #fecaca;
}
.sec-oto .s-card-name {
  color: #111;
}
.sec-oto .s-card-sub {
  color: #ef4444;
}
.sec-oto .s-testi {
  background: #111;
}
.sec-oto .s-testi-q {
  color: rgba(255, 255, 255, 0.65);
}
.sec-oto .s-testi-name {
  color: #fff;
}
.sec-oto .s-testi-role {
  color: rgba(255, 255, 255, 0.4);
}
.sec-oto .s-testi-av {
  background: #ef4444;
}
.sec-oto .s-form {
  background: #fff;
  border-color: #fecaca;
}
.sec-oto .s-form-title {
  color: #111;
}
.sec-oto .s-field {
  background: #fff5f5;
  border-color: #fecaca;
  color: #7a879f;
}
.sec-oto .s-submit {
  background: #ef4444;
  color: #fff;
}

.fbadge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 82, 255, 0.06);
  z-index: 10;
}
.fbadge-sub {
  font-size: 0.59rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.fb-rank {
  top: -18px;
  right: -12px;
  animation: floatFB1 5s ease-in-out infinite;
}
.fb-speed {
  bottom: 56px;
  left: -22px;
  animation: floatFB2 6.5s ease-in-out infinite 1.2s;
}
.fb-wa {
  bottom: -16px;
  right: 28px;
  animation: floatFB1 7s ease-in-out infinite 2.5s;
}
.rank-box {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}
.speed-ring-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.speed-ring-wrap svg {
  width: 36px;
  height: 36px;
  transform: rotate(-90deg);
}
.sr-bg {
  fill: none;
  stroke: #eef0f8;
  stroke-width: 4;
}
.sr-fill {
  fill: none;
  stroke: #16a34a;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 88;
  stroke-dashoffset: 12;
}
.sr-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  font-weight: 800;
  color: #16a34a;
}
.wa-dot-live {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  margin-right: 4px;
  animation: blink 1.3s infinite;
}

@keyframes floatFB1 {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}
@keyframes floatFB2 {
  0%,
  100% {
    transform: translateY(0) rotate(0.5deg);
  }
  50% {
    transform: translateY(-7px) rotate(-0.5deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── FOMO BOTTOM BAR ── */
.dwh-fomo-bar {
  width: 100%;
  background: linear-gradient(90deg, #0a0f1a 0%, #0d1528 50%, #0a0f1a 100%);
  border-top: 1px solid rgba(0, 82, 255, 0.15);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  flex-wrap: nowrap;
  overflow: hidden;
}
.fomo-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.fomo-bar-item strong {
  color: #fff;
  font-weight: 700;
}
.fomo-bar-item .fbi-accent {
  color: #5b9dff;
}
.fomo-bar-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}
.fbi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: blink 0.9s infinite;
  flex-shrink: 0;
}
.fbi-fire {
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .dwh-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .dwh-eyebrow,
  .dwh-sub,
  .dwh-stats,
  .dwh-btns,
  .dwh-fomo-row,
  .dwh-trust {
    margin: 0 auto;
    justify-content: center;
  }
  .dwh-fomo,
  .dwh-ticker {
    margin: 0 auto;
  }
  .dwh-fomo-bar {
    gap: 20px;
    padding: 14px 20px;
  }
  .fomo-bar-sep {
    display: none;
  }
}
@media (max-width: 540px) {
  .dwh-wrap {
    padding: 0 20px 48px;
  }
  .fb-speed {
    display: none;
  }
  .dwh-fomo-bar {
    gap: 12px;
  }
  .fomo-bar-item:nth-child(4),
  .fomo-bar-item:nth-child(5) {
    display: none;
  }
}

.denizli-problem-solver,
.denizli-problem-solver h2,
.denizli-problem-solver p,
.denizli-problem-solver span,
.denizli-problem-solver div,
.denizli-problem-solver a,
.denizli-problem-solver button {
  font-family: 'Bricolage Grotesque', sans-serif;
}

.denizli-problem-solver {
  background: #0a0b10;
  padding: 100px 0 110px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.denizli-problem-solver::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 82, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 82, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.denizli-problem-solver::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.dps-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.dps-header {
  text-align: center;
  margin-bottom: 64px;
}

.dps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.3);
  color: #5b9dff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.dps-eyebrow-icon {
  width: 5px;
  height: 5px;
  background: #5b9dff;
  border-radius: 50%;
  animation: dpsEyebrowPulse 2s infinite;
}

@keyframes dpsEyebrowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(91, 157, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(91, 157, 255, 0);
  }
}

.dps-h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 740px;
  margin: 0 auto 10px;
}

.dps-h2 .h2-white {
  color: #fff;
}

.dps-h2 .h2-blue {
  color: #0052ff;
}

.dps-h2 .h2-dim {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  margin-top: 6px;
}

.dps-desc {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: #6b7a99;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* Cards */
.dps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.dps-card {
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.dps-card--problem {
  background: #111318;
  border: 1px solid #1e2130;
}

.dps-card--problem::before {
  content: '✕';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 60, 60, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.dps-card-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.dps-card--problem .dps-card-label {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.dps-card--solution .dps-card-label {
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.3);
  color: #5b9dff;
  box-shadow: 0 0 16px rgba(0, 82, 255, 0.2);
}

.dps-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.3;
}

.dps-card--problem .dps-card-title {
  color: #c0cce0;
}

.dps-card--solution .dps-card-title {
  color: #fff;
}

.dps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.dps-item:hover {
  transform: translateX(3px);
}

.dps-card--problem .dps-item {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.dps-card--solution .dps-item {
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.14);
}

.dps-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.dps-card--problem .dps-item-icon {
  background: rgba(239, 68, 68, 0.12);
}

.dps-card--solution .dps-item-icon {
  background: rgba(0, 82, 255, 0.15);
}

.dps-item-text {
  flex: 1;
}

.dps-item-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 3px;
}

.dps-card--problem .dps-item-title {
  color: #c8d4e8;
}

.dps-card--solution .dps-item-title {
  color: #e8f0ff;
}

.dps-item-sub {
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.5;
}

.dps-card--problem .dps-item-sub {
  color: #4a5568;
}

.dps-card--solution .dps-item-sub {
  color: #4a6090;
}

.dps-card--solution {
  background: #0c1020;
  border: 1px solid rgba(0, 82, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.1),
    0 0 40px rgba(0, 82, 255, 0.08),
    0 0 80px rgba(0, 82, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dps-card--solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 82, 255, 0.6),
    rgba(91, 157, 255, 0.8),
    rgba(0, 82, 255, 0.6),
    transparent
  );
}

.dps-card--solution::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 82, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ── UPGRADED CTA STRIP ── */
.dps-cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0f1f 0%, #0c1428 50%, #080d1a 100%);
  border: 1px solid rgba(0, 82, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 82, 255, 0.08),
    0 24px 60px rgba(0, 82, 255, 0.12);
}

/* Top glow line */
.dps-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 82, 255, 0.5),
    rgba(91, 157, 255, 0.7),
    rgba(0, 82, 255, 0.5),
    transparent
  );
}

/* Ambient blob */
.dps-cta::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.dps-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
}

.dps-cta-left {
  flex: 1;
}

.dps-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #fbbf24;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.dps-cta-headline {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.dps-cta-headline strong {
  color: #5b9dff;
}

.dps-cta-sub {
  font-size: 0.78rem;
  color: #5a6a88;
  font-weight: 500;
  line-height: 1.6;
}

/* Right side: button + micro-trust */
.dps-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.dps-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0052ff 0%, #1a6bff 100%);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 4px 20px rgba(0, 82, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 60px rgba(0, 82, 255, 0.15);
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.dps-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.dps-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 40px rgba(0, 82, 255, 0.5),
    0 0 80px rgba(0, 82, 255, 0.2);
}

.dps-cta-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.dps-cta-btn:hover svg {
  transform: translateX(4px);
}

.dps-cta-micro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.dps-cta-free {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dps-cta-free::before {
  content: '✓';
}

.dps-cta-privacy {
  font-size: 0.6rem;
  color: #3a4a60;
  font-weight: 500;
}

/* Divider stat row inside CTA */
.dps-cta-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
}

.dps-cta-stat {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.dps-cta-stat:last-child {
  border-right: none;
}

.dcs-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.dcs-num span {
  color: #5b9dff;
}

.dcs-lbl {
  font-size: 0.6rem;
  font-weight: 500;
  color: #3a4a60;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .dps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dps-inner {
    padding: 0 24px;
  }

  .dps-cta-inner {
    flex-direction: column;
    padding: 28px 24px;
    gap: 24px;
  }

  .dps-cta-right {
    width: 100%;
  }

  .dps-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .dps-cta-stats {
    gap: 0;
  }
}

@media (max-width: 540px) {
  .denizli-problem-solver {
    padding: 72px 0 80px;
  }

  .dps-card {
    padding: 26px 22px;
  }

  .dps-header {
    margin-bottom: 44px;
  }

  .dps-cta-stats .dps-cta-stat:nth-child(4) {
    display: none;
  }
}

/* ── Scoped font guarantee ── */
.dvc-section,
.dvc-section * {
  font-family: 'Bricolage Grotesque', sans-serif;
}

.dvc-section {
  background: #f8faff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

/* Subtle top separator glow from dark section above */
.dvc-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.15), transparent);
}

/* Very faint dot-grid texture */
.dvc-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 82, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.dvc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ─── HEADER ─── */
.dvc-header {
  text-align: center;
  margin-bottom: 64px;
}

.dvc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: #0052ff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.dvc-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: #0052ff;
  border-radius: 50%;
  animation: dvcPulse 2s infinite;
}

@keyframes dvcPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.45);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(0, 82, 255, 0);
  }
}

.dvc-h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #07111f;
  max-width: 680px;
  margin: 0 auto 18px;
}

.dvc-h2 em {
  font-style: normal;
  color: #0052ff;
  position: relative;
}

.dvc-h2 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #3b7bff);
  border-radius: 2px;
  opacity: 0.3;
}

.dvc-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  color: #6b7a99;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}

/* ─── COMPARISON TABLE ─── */
.dvc-table-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4eaf4;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.03),
    0 20px 60px rgba(0, 82, 255, 0.06);
  margin-bottom: 44px;
  background: #fff;
}

/* Column headers row */
.dvc-thead {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  background: #f3f6fc;
  border-bottom: 1px solid #e4eaf4;
}

.dvc-th {
  padding: 20px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a879f;
}

.dvc-th:not(:last-child) {
  border-right: 1px solid #e4eaf4;
}

/* Blue Medya column header — highlighted */
.dvc-th--blue {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.07), rgba(0, 82, 255, 0.03));
  color: #0052ff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.dvc-th--blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0052ff, #3b7bff);
}

.dvc-recommended {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #0052ff;
  color: #fff;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

/* Body rows */
.dvc-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid #f0f4fb;
  transition: background 0.18s;
}

.dvc-row:last-child {
  border-bottom: none;
}

.dvc-row:hover {
  background: #fafbff;
}

.dvc-cell {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.dvc-cell:not(:last-child) {
  border-right: 1px solid #f0f4fb;
}

/* Feature label cell (col 1) */
.dvc-cell--label {
}

.dvc-feature-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #07111f;
  line-height: 1.3;
  margin-bottom: 2px;
}

.dvc-feature-hint {
  font-size: 0.72rem;
  color: #9aaabf;
  font-weight: 400;
  line-height: 1.5;
}

/* Others cell (col 2) */
.dvc-cell--others {
  background: #fff;
}

.dvc-verdict {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.dvc-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

.dvc-verdict-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #7a879f;
  line-height: 1.55;
}

/* Blue Medya cell (col 3) */
.dvc-cell--blue {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.04), rgba(0, 82, 255, 0.02));
}

.dvc-cell--blue .dvc-verdict-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #07111f;
  line-height: 1.55;
}

/* ─── BOTTOM CTA ─── */
.dvc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 16px;
  padding: 28px 36px;
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.dvc-cta::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0052ff, #3b7bff);
}

.dvc-cta-text {
  flex: 1;
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 600;
  color: #3d4d65;
  line-height: 1.65;
}

.dvc-cta-text strong {
  color: #07111f;
  font-weight: 700;
}

.dvc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow:
    0 4px 20px rgba(0, 82, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.dvc-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.dvc-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(0, 82, 255, 0.4);
  background: #1260ff;
}

.dvc-cta-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s;
  flex-shrink: 0;
}

.dvc-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  /* Collapse to 2 columns: Feature + Blue Medya only */
  .dvc-thead,
  .dvc-row {
    grid-template-columns: 1fr 1fr;
  }

  .dvc-th--others,
  .dvc-cell--others {
    display: none;
  }

  .dvc-inner {
    padding: 0 24px;
  }

  .dvc-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px;
    gap: 18px;
  }

  .dvc-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .dvc-section {
    padding: 72px 0 80px;
  }

  .dvc-header {
    margin-bottom: 44px;
  }

  .dvc-cell {
    padding: 18px 16px;
  }

  .dvc-th {
    padding: 16px;
  }

  .dvc-h2 {
    font-size: 1.6rem;
  }
}

.dsi-section,
.dsi-section * {
  font-family: 'Bricolage Grotesque', sans-serif;
}

.dsi-section {
  background: #0a0b10;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

/* Top separator from light section */
.dsi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.2), transparent);
}

/* Ambient grid */
.dsi-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* Radial glow top */
.dsi-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.dsi-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.dsi-header {
  text-align: center;
  margin-bottom: 64px;
}

.dsi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.12);
  border: 1px solid rgba(0, 82, 255, 0.28);
  color: #5b9dff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.dsi-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: #5b9dff;
  border-radius: 50%;
  animation: dsiPulse 2s infinite;
}

@keyframes dsiPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(91, 157, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(91, 157, 255, 0);
  }
}

.dsi-h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin: 0 auto 18px;
}

.dsi-h2 em {
  font-style: normal;
  color: #0052ff;
}

.dsi-desc {
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  color: #4a5a78;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Service Grid ── */
.dsi-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 44px;
}

.dsi-item {
  background: #0d0e16;
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: default;
  position: relative;
  transition:
    background 0.22s ease,
    transform 0.22s ease;
  overflow: hidden;
}

/* Bottom-right shimmer on hover */
.dsi-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 90%, rgba(0, 82, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.dsi-item:hover::after {
  opacity: 1;
}

.dsi-item:hover {
  background: #101322;
}

/* Glowing bullet */
.dsi-bullet {
  width: 8px;
  height: 8px;
  background: #0052ff;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.5);
  animation: dsiBulletPulse 2.8s ease-in-out infinite;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.dsi-item:hover .dsi-bullet {
  box-shadow: 0 0 12px rgba(0, 82, 255, 0.9);
  transform: scale(1.3);
}

/* Stagger the pulse per item */
.dsi-item:nth-child(2) .dsi-bullet {
  animation-delay: 0.3s;
}

.dsi-item:nth-child(3) .dsi-bullet {
  animation-delay: 0.6s;
}

.dsi-item:nth-child(4) .dsi-bullet {
  animation-delay: 0.9s;
}

.dsi-item:nth-child(5) .dsi-bullet {
  animation-delay: 1.2s;
}

.dsi-item:nth-child(6) .dsi-bullet {
  animation-delay: 1.5s;
}

.dsi-item:nth-child(7) .dsi-bullet {
  animation-delay: 1.8s;
}

.dsi-item:nth-child(8) .dsi-bullet {
  animation-delay: 2.1s;
}

.dsi-item:nth-child(9) .dsi-bullet {
  animation-delay: 2.4s;
}

.dsi-item:nth-child(10) .dsi-bullet {
  animation-delay: 2.7s;
}

.dsi-item:nth-child(11) .dsi-bullet {
  animation-delay: 3s;
}

.dsi-item:nth-child(12) .dsi-bullet {
  animation-delay: 3.3s;
}

@keyframes dsiBulletPulse {
  0%,
  70%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.5);
  }

  40% {
    box-shadow: 0 0 0 5px rgba(0, 82, 255, 0);
  }
}

.dsi-text {
  flex: 1;
}

.dsi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #8a9dbf;
  line-height: 1.35;
  margin-bottom: 4px;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
  display: block;
}

.dsi-item:hover .dsi-name {
  color: #fff;
  transform: translateX(4px);
}

.dsi-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: #2e3850;
  line-height: 1.5;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.dsi-item:hover .dsi-sub {
  color: #4a6090;
  transform: translateX(4px);
}

/* ── Micro CTA ── */
.dsi-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #0d0e18;
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 16px;
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
}

.dsi-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.4), transparent);
}

/* Tea emoji float */
.dsi-cta-emoji {
  font-size: 2.4rem;
  flex-shrink: 0;
  animation: dsiTeaFloat 4s ease-in-out infinite;
}

@keyframes dsiTeaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-6px) rotate(3deg);
  }
}

.dsi-cta-body {
  flex: 1;
}

.dsi-cta-msg {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 600;
  color: #8a9dbf;
  line-height: 1.6;
  margin-bottom: 0;
}

.dsi-cta-msg strong {
  color: #fff;
  font-weight: 700;
}

.dsi-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  box-shadow:
    0 4px 20px rgba(0, 82, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.dsi-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.dsi-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(0, 82, 255, 0.45);
  background: #1260ff;
}

.dsi-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s;
}

.dsi-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .dsi-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .dsi-inner {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .dsi-section {
    padding: 72px 0 80px;
  }

  .dsi-services {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .dsi-header {
    margin-bottom: 44px;
  }

  .dsi-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }

  .dsi-cta-emoji {
    display: none;
  }

  .dsi-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Font guarantee ── */
.dcp-section,
.dcp-section * {
  font-family: 'Bricolage Grotesque', sans-serif;
  box-sizing: border-box;
}

/* ── Wrapper ── */
.dcp-section {
  background: #07111f;
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}

/* Top hairline */
.dcp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.25), transparent);
}

/* Ambient radial glow */
.dcp-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid lines bg */
.dcp-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 64px 64px;
}

.dcp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ══════════════════
          HEADER
       ══════════════════ */
.dcp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.dcp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 82, 255, 0.14);
  border: 1px solid rgba(0, 82, 255, 0.3);
  color: #5b9dff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.dcp-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: #5b9dff;
  border-radius: 50%;
  animation: dcpPulse 2s infinite;
}

@keyframes dcpPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(91, 157, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(91, 157, 255, 0);
  }
}

.dcp-h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
}

.dcp-h2 em {
  font-style: normal;
  color: #0052ff;
}

.dcp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0052ff;
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  box-shadow:
    0 4px 24px rgba(0, 82, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.dcp-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.dcp-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 82, 255, 0.5);
  background: #1260ff;
}

.dcp-cta-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s;
  flex-shrink: 0;
}

.dcp-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ══════════════════
          STEPS GRID
       ══════════════════ */
.dcp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Single step card */
.dcp-step {
  background: #0d0e18;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: default;
}

/* Hover lift */
.dcp-step:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 255, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 82, 255, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hover glow blob */
.dcp-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(0, 82, 255, 0.09) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.dcp-step:hover::after {
  opacity: 1;
}

/* Top accent line on hover */
.dcp-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0052ff, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.dcp-step:hover::before {
  opacity: 1;
}

/* Step number — big, faint background number */
.dcp-step-num-bg {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
  transition: color 0.25s;
}

.dcp-step:hover .dcp-step-num-bg {
  color: rgba(0, 82, 255, 0.06);
}

/* Emoji icon */
.dcp-step-emoji {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dcp-step:hover .dcp-step-emoji {
  transform: scale(1.15) rotate(6deg);
}

/* Step number pill */
.dcp-step-num {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 82, 255, 0.15);
  border: 1px solid rgba(0, 82, 255, 0.3);
  color: #5b9dff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
  transition:
    background 0.25s,
    color 0.25s;
}

.dcp-step:hover .dcp-step-num {
  background: rgba(0, 82, 255, 0.25);
  color: #7eb8ff;
}

/* Title */
.dcp-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e8eef8;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.dcp-step:hover .dcp-step-title {
  color: #fff;
}

/* Body */
.dcp-step-body {
  font-size: 0.78rem;
  font-weight: 500;
  color: #3a4a60;
  line-height: 1.7;
  flex: 1;
  transition: color 0.2s;
}

.dcp-step:hover .dcp-step-body {
  color: #4a5e7a;
}

.dcp-step-body strong {
  color: #5a7090;
  font-weight: 700;
}

.dcp-step:hover .dcp-step-body strong {
  color: #6a80a8;
}

/* Duration badge */
.dcp-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #3a4a60;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 8px;
  margin-top: 20px;
  letter-spacing: 0.03em;
  width: fit-content;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}

.dcp-step:hover .dcp-step-tag {
  border-color: rgba(0, 82, 255, 0.25);
  color: #5b9dff;
  background: rgba(0, 82, 255, 0.07);
}

/* Connector arrow between steps (desktop only) */
.dcp-steps {
  position: relative;
}

/* ══════════════════
          BOTTOM CTA STRIP
       ══════════════════ */
.dcp-strip {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.18);
  border-radius: 16px;
  padding: 22px 32px;
  position: relative;
  overflow: hidden;
}

.dcp-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.4), transparent);
}

.dcp-strip-text {
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  font-weight: 600;
  color: #4a5e7a;
  line-height: 1.6;
}

.dcp-strip-text strong {
  color: #c8d8f0;
  font-weight: 700;
}

/* ══════════════════
          RESPONSIVE — S5
       ══════════════════ */
@media (max-width: 900px) {
  .dcp-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dcp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 48px;
  }

  .dcp-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .dcp-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .dcp-strip .dcp-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .dcp-section {
    padding: 60px 0 68px;
  }

  .dcp-inner {
    padding: 0 18px;
  }

  .dcp-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dcp-step {
    padding: 24px 20px 20px;
    border-radius: 16px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dcp-step-emoji {
    margin-bottom: 0;
    margin-right: 12px;
    font-size: 1.6rem;
  }

  .dcp-step-num-bg {
    display: none;
  }

  .dcp-step-num {
    margin-bottom: 10px;
  }

  .dcp-step-title {
    font-size: 0.95rem;
  }

  .dcp-step-body {
    font-size: 0.75rem;
  }

  .dcp-strip {
    padding: 18px 16px;
  }
}

/* ═══════════════════
               SECTION 1 — HERO
            ═══════════════════ */
@media (max-width: 900px) {
  .dwh {
    min-height: unset !important;
    display: block !important;
    padding-top: 20px !important;
  }

  .dwh-wrap {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 20px 20px 40px !important;
    gap: 24px !important;
  }

  .dwh-right {
    display: none !important;
  }

  .dwh-left {
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
  }

  .dwh-h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem) !important;
  }

  .dwh-sub {
    font-size: 0.88rem !important;
    max-width: 100% !important;
  }

  .dwh-btns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .dwh-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .dwh-fomo {
    width: 100% !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }

  .dwh-ticker {
    width: 100% !important;
  }

  .dwh-fomo-bar {
    padding: 10px 16px !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .dwh-fomo-bar::-webkit-scrollbar {
    display: none !important;
  }

  .fomo-bar-sep {
    display: none !important;
  }

  .fomo-bar-item {
    padding: 0 12px !important;
    font-size: 0.59rem !important;
    flex-shrink: 0 !important;
  }
}

/* ═══════════════════════════
                       SECTION 2 — PROBLEM/ÇÖZÜM
                    ═══════════════════════════ */
@media (max-width: 900px) {
  .denizli-problem-solver {
    padding: 60px 0 60px !important;
  }

  .dps-inner {
    padding: 0 20px !important;
  }

  .dps-header {
    margin-bottom: 32px !important;
  }

  .dps-h2 {
    font-size: clamp(1.45rem, 6.5vw, 2rem) !important;
  }

  .dps-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .dps-card {
    padding: 22px 18px !important;
    border-radius: 14px !important;
  }

  .dps-item {
    padding: 11px 12px !important;
  }

  .dps-item-title {
    font-size: 0.78rem !important;
  }

  .dps-item-sub {
    font-size: 0.68rem !important;
  }

  .dps-cta-inner {
    flex-direction: column !important;
    padding: 22px 18px !important;
    gap: 18px !important;
  }

  .dps-cta-right {
    width: 100% !important;
  }

  .dps-cta-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px !important;
  }

  .dps-cta-stats {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
  }
}

/* ═══════════════════════
                       SECTION 3 — KIYASLAMA
                    ═══════════════════════ */
@media (max-width: 900px) {
  .dvc-section {
    padding: 60px 0 60px !important;
  }

  .dvc-inner {
    padding: 0 20px !important;
  }

  .dvc-header {
    margin-bottom: 32px !important;
  }

  .dvc-h2 {
    font-size: clamp(1.45rem, 6.5vw, 2rem) !important;
  }

  .dvc-table-wrap {
    border-radius: 14px !important;
    margin-bottom: 20px !important;
  }

  .dvc-thead {
    grid-template-columns: 1fr 1fr !important;
  }

  .dvc-th--others {
    display: none !important;
  }

  .dvc-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .dvc-cell--others {
    display: none !important;
  }

  .dvc-th {
    padding: 14px 12px !important;
    font-size: 0.6rem !important;
  }

  .dvc-cell {
    padding: 14px 12px !important;
  }

  .dvc-feature-name {
    font-size: 0.78rem !important;
  }

  .dvc-feature-hint {
    font-size: 0.62rem !important;
  }

  .dvc-verdict-text {
    font-size: 0.72rem !important;
  }

  .dvc-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 18px 16px !important;
    gap: 14px !important;
  }

  .dvc-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ══════════════════════════════
                       SECTION 4 — HİZMET ENVANTERİ
                    ══════════════════════════════ */
@media (max-width: 900px) {
  .dsi-section {
    padding: 60px 0 60px !important;
  }

  .dsi-inner {
    padding: 0 20px !important;
  }

  .dsi-header {
    margin-bottom: 32px !important;
  }

  .dsi-h2 {
    font-size: clamp(1.45rem, 6.5vw, 2rem) !important;
  }

  .dsi-services {
    grid-template-columns: 1fr 1fr !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
  }

  .dsi-item {
    padding: 16px 12px !important;
  }

  .dsi-name {
    font-size: 0.78rem !important;
  }

  .dsi-sub {
    font-size: 0.62rem !important;
  }

  .dsi-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 18px 16px !important;
    gap: 14px !important;
  }

  .dsi-cta-emoji {
    display: none !important;
  }

  .dsi-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .dsi-services {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════
                       SECTION 5 — SÜREÇ (zaten responsive, ek fix)
                    ══════════════════════════ */
@media (max-width: 900px) {
  .dcp-section {
    padding: 60px 0 68px !important;
  }

  .dcp-inner {
    padding: 0 20px !important;
  }

  .dcp-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-bottom: 40px !important;
  }

  .dcp-header .dcp-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .dcp-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .dcp-strip {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 18px 16px !important;
    gap: 14px !important;
  }

  .dcp-strip .dcp-cta-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 520px) {
  .dcp-steps {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .dcp-step {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    padding: 20px 16px !important;
    border-radius: 14px !important;
    gap: 0 !important;
  }

  .dcp-step-emoji {
    font-size: 1.5rem !important;
    margin-right: 10px !important;
    margin-bottom: 0 !important;
  }

  .dcp-step-num-bg {
    display: none !important;
  }
}
