/**
 * Neler Yapıyoruz / What We Do — Eurosan
 */

.wwd-page {
  --wwd-blue: #0b6fa8;
  --wwd-cyan: #0ea2f0;
  --wwd-mint: #8ee7ff;
  --wwd-slate: #0f172a;
  --wwd-card: #ffffff;
  --wwd-border: rgba(15, 23, 42, 0.08);
  --wwd-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.wwd-page .container {
  max-width: 1360px;
}

.wwd-intro {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #042f4b 0%, var(--wwd-blue) 42%, var(--wwd-cyan) 100%);
  color: #fff;
  padding: clamp(34px, 5vw, 64px);
  margin-bottom: 3.5rem;
  box-shadow: var(--wwd-shadow);
}

.wwd-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(142, 231, 255, 0.35), transparent 55%);
  pointer-events: none;
}

.wwd-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.wwd-intro__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 0.75rem;
}

.wwd-intro__tag i {
  opacity: 0.85;
}

.wwd-intro h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.wwd-intro p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}

.wwd-section-title {
  margin-bottom: 2.5rem;
}

.wwd-section-title .pre {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wwd-cyan);
  margin-bottom: 0.35rem;
}

.wwd-section-title h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--wwd-slate);
  margin: 0;
}

.wwd-section-title p.sub {
  margin: 0.5rem 0 0;
  max-width: 760px;
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Horizontal process steps */
.wwd-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (max-width: 1199px) {
  .wwd-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wwd-steps {
    grid-template-columns: 1fr;
  }
}

.wwd-step {
  position: relative;
  background: var(--wwd-card);
  border: 1px solid var(--wwd-border);
  border-radius: 16px;
  padding: 1.6rem 1.45rem 1.45rem;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wwd-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 162, 240, 0.12);
  border-color: rgba(14, 162, 240, 0.35);
}

.wwd-step__num {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, var(--wwd-cyan), var(--wwd-blue));
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(14, 162, 240, 0.35);
}

.wwd-step__icon {
  font-size: 1.6rem;
  color: var(--wwd-blue);
  margin-bottom: 0.65rem;
  opacity: 0.9;
}

.wwd-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wwd-slate);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.wwd-step p {
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* Connector line desktop */
@media (min-width: 1200px) {
  .wwd-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.85rem;
    right: -0.7rem;
    width: 1.4rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(14, 162, 240, 0.5), rgba(14, 162, 240, 0.15));
    z-index: 0;
  }
}

/* Split band: image + pillars */
.wwd-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

@media (max-width: 991px) {
  .wwd-split {
    grid-template-columns: 1fr;
  }
}

.wwd-split__visual {
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  position: relative;
  box-shadow: var(--wwd-shadow);
}

.wwd-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwd-split__visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.88));
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.55;
}

.wwd-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wwd-pillar {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.55rem;
  background: #f8fafc;
  border: 1px solid var(--wwd-border);
  border-radius: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.wwd-pillar:hover {
  background: #fff;
  border-color: rgba(14, 162, 240, 0.25);
}

.wwd-pillar__ico {
  flex-shrink: 0;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--wwd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--wwd-cyan);
}

.wwd-pillar h4 {
  margin: 0 0 0.35rem;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--wwd-slate);
}

.wwd-pillar p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

/* Capability grid */
.wwd-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
  .wwd-cap-grid {
    grid-template-columns: 1fr;
  }
}

.wwd-cap {
  background: var(--wwd-card);
  border-radius: 16px;
  border: 1px solid var(--wwd-border);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wwd-cap:hover {
  transform: translateY(-3px);
  box-shadow: var(--wwd-shadow);
}

.wwd-cap__ring {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(142, 231, 255, 0.35), rgba(14, 162, 240, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--wwd-blue);
}

.wwd-cap h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--wwd-slate);
}

.wwd-cap p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.wwd-cap ul {
  text-align: left;
  margin: 1rem 0 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.55;
}

.wwd-cap ul li {
  margin-bottom: 0.35rem;
}

/* Highlight strip */
.wwd-strip {
  border-radius: 16px;
  background: linear-gradient(90deg, #f0f9ff 0%, #ecfeff 50%, #f0fdf4 100%);
  border: 1px solid rgba(14, 162, 240, 0.2);
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}

.wwd-strip strong {
  color: var(--wwd-slate);
  font-size: 1.15rem;
}

.wwd-strip span {
  color: #475569;
  font-size: 1.05rem;
  flex: 1;
  min-width: 200px;
}

.wwd-strip a {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .wwd-page .container {
    max-width: 100%;
  }

  .wwd-intro h2 {
    font-size: clamp(1.55rem, 5.2vw, 2.15rem);
  }

  .wwd-intro p {
    font-size: 1.02rem;
  }

  .wwd-section-title h3 {
    font-size: clamp(1.45rem, 4.7vw, 1.85rem);
  }
}
