/* ═══════════════════════════════════════════════════
   DESIGN SYSTEM — Web Development USA (Light Theme)
   Violet #861cff  |  Pink/Coral #ff4b70  |  Light BG #ffffff
   ═══════════════════════════════════════════════════ */
:root {
  --void: #ffffff;
  --deep: #fcfaff;
  --pit: #f8f6ff;
  --well: #ffffff;
  --rim: rgba(134, 28, 255, 0.08);
  --rim2: rgba(134, 28, 255, 0.15);
  --v: #861cff; /* Project primary purple */
  --v2: #9f67ff; /* Secondary purple */
  --v3: #6713c6; /* Dark purple */
  --vd: rgba(134, 28, 255, 0.1);
  --vd2: rgba(134, 28, 255, 0.05);
  --cr: #ff4b70; /* Project pink accent */
  --cr2: #e7395c;
  --crd: rgba(255, 75, 112, 0.1);
  --cyan: #06d6d6;
  --cyand: rgba(6, 214, 214, 0.1);
  --gold: #ffc107;
  --txt: #1c192b; /* Dark text */
  --mid: #524f66; /* Medium dark text */
  --dim: #7b788f; /* Muted text */
  --FH: "Poppins", sans-serif;
  --FB: "Poppins", sans-serif;
  --FM: monospace;
}

body.web-dev-page {
  background: var(--void);
  color: var(--txt);
  font-family: var(--FB);
  font-size: 16px;
  line-height: 1.75;
}

body.web-dev-page p {
  color: var(--mid);
  line-height: 1.82;
}

/* ── LAYOUT ── */
.W {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}
.W-sm {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ── TYPE ── */
.eyebrow {
  font-family: var(--FM);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--v2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--v2);
  flex-shrink: 0;
}

.D1 {
  font-family: var(--FH);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--txt);
}
.D1 em {
  font-style: normal;
  color: var(--v);
}
.D1 i {
  font-style: italic;
  font-weight: 400;
  color: var(--dim);
}

.D2 {
  font-family: var(--FH);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--txt);
}
.D2 em {
  color: var(--v);
  font-style: normal;
}
.D2 i {
  font-style: italic;
  font-weight: 400;
  color: var(--dim);
}

.D3 {
  font-family: var(--FH);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--txt);
}

.lead {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 24px;
}
.mono {
  font-family: var(--FM);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
}

/* ── BUTTONS ── */
.Btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--FH);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  text-decoration: none;
}
.Btn-em {
  background: var(--v);
  color: #ffffff !important;
}
.Btn-em:hover {
  background: var(--v2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(134, 28, 255, 0.3);
}
.Btn-ghost {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--rim2);
}
.Btn-ghost:hover {
  border-color: var(--v);
  color: var(--v) !important;
}
.Btn-white {
  background: #ffffff;
  color: var(--txt) !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.Btn-white:hover {
  background: #fcfaff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(134, 28, 255, 0.15);
}

/* ── TAGS ── */
.Tag {
  display: inline-block;
  font-family: var(--FM);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
}
.Tag-em {
  background: var(--vd);
  color: var(--v3);
  border: 1px solid rgba(134, 28, 255, 0.25);
}
.Tag-or {
  background: var(--crd);
  color: var(--cr);
  border: 1px solid rgba(255, 75, 112, 0.2);
}
.Tag-bl {
  background: var(--cyand);
  color: var(--cyan);
  border: 1px solid rgba(6, 214, 214, 0.2);
}
.Tag-nt {
  background: rgba(134, 28, 255, 0.04);
  color: var(--mid);
  border: 1px solid var(--rim);
}

/* ── HERO CUSTOM STYLES (Gradients to match standard header) ── */
.web-dev-hero-section {
  padding-top: 140px;
  position: relative;
  overflow: hidden;
}
.web-dev-hero-section .eyebrow {
  color: #ffc107;
}
.web-dev-hero-section .eyebrow::before {
  background: #ffc107;
}
.web-dev-hero-section .hero-pulse {
  color: rgba(255, 255, 255, 0.8);
}
.web-dev-hero-section .D1 {
  color: #ffffff;
}
.web-dev-hero-section .D1 em {
  color: #ff4b70; /* Coral Pink inside dark gradient */
}
.web-dev-hero-section .D1 i {
  color: rgba(255, 255, 255, 0.7);
}
.web-dev-hero-section .lead {
  color: rgba(255, 255, 255, 0.85);
}
.web-dev-hero-section .Btn-em {
  background: #ff4b70;
  color: #ffffff !important;
}
.web-dev-hero-section .Btn-em:hover {
  background: #e7395c;
  box-shadow: 0 8px 32px rgba(255, 75, 112, 0.45);
}
.web-dev-hero-section .Btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.web-dev-hero-section .Btn-ghost:hover {
  border-color: #ffffff;
  color: #ffc107 !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--FM);
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cr);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.ht-item .n {
  font-family: var(--FH);
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.ht-item .n span {
  color: #ff4b70;
}
.ht-item .l {
  font-family: var(--FM);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* HERO CARD */
.hcard {
  background: #ffffff;
  border: 1px solid rgba(134, 28, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(134, 28, 255, 0.08);
}
.hcard-top {
  background: #fcfaff;
  border-bottom: 1px solid rgba(134, 28, 255, 0.08);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hcard-dots {
  display: flex;
  gap: 5px;
}
.hc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.hcard-body {
  padding: 26px;
  text-align: left;
}
.hl {
  font-family: var(--FH);
  font-size: 16px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 3px;
}
.hs {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.5;
}
.fl {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.fi-inp {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(134, 28, 255, 0.15);
  border-radius: 4px;
  color: var(--txt);
  font-family: var(--FB);
  font-size: 13px;
  padding: 10px 13px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.15s;
}
.fi-inp:focus {
  border-color: var(--v);
}
select.fi-inp {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23861cff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
}
.hcard-note {
  font-family: var(--FM);
  font-size: 10px;
  color: var(--dim);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* ── TICKER BAND ── */
.ticker {
  border-top: 1px solid var(--rim);
  border-bottom: 1px solid var(--rim);
  background: var(--deep);
  padding: 13px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: tick 28s linear infinite;
  width: max-content;
}
.ti {
  font-family: var(--FM);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0 36px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ti::after {
  content: "◆";
  font-size: 7px;
  color: var(--v);
  opacity: 0.5;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── INTRO TEXT SECTION ── */
.intro {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-big {
  font-family: var(--FH);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 20px;
}
.intro-big strong {
  color: var(--txt);
  font-weight: 700;
}

/* ── STATS ROW ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rim);
}
.sc {
  background: var(--void);
  padding: 32px 28px;
}
.sc-n {
  font-family: var(--FH);
  font-size: 44px;
  font-weight: 900;
  color: var(--txt);
  line-height: 1;
  margin-bottom: 5px;
}
.sc-n span {
  color: var(--v);
}
.sc-l {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.svc {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
  text-align: left;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sc-card {
  background: var(--void);
  padding: 36px 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rim);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(134, 28, 255, 0.03);
  text-align: left;
}
.sc-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--v);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.sc-card:hover::after {
  transform: scaleY(1);
}
.sc-card:hover {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(134, 28, 255, 0.08);
}
.sc-no {
  font-family: var(--FM);
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--vd);
  border: 1px solid rgba(134, 28, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.sc-card h3 {
  font-family: var(--FH);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--txt);
  margin-bottom: 10px;
}
.sc-card p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.72;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--FM);
  font-size: 10px;
  color: var(--v2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 20px;
  transition: gap 0.15s;
}
.sc-card:hover .sc-link {
  gap: 10px;
}

/* ── WHY KWIQSOFT ── */
.why {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
  background: var(--deep);
}
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  text-align: left;
}
.witem {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rim);
  align-items: flex-start;
}
.witem:first-child {
  border-top: 1px solid var(--rim);
}
.w-n {
  font-family: var(--FM);
  font-size: 10px;
  color: var(--v);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 28px;
}
.w-body h3 {
  font-family: var(--FH);
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.w-body p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.7;
}

/* Terminal widget */
.terminal {
  background: #111215;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  text-align: left;
}
.t-bar {
  background: #1a1c20;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}
.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.t-body {
  padding: 24px;
}
.tl {
  font-family: var(--FM);
  font-size: 12px;
  line-height: 1.95;
  display: block;
}
.tc-g {
  color: #00c87a;
}
.tc-b {
  color: #64b5f6;
}
.tc-o {
  color: #ffb1c1;
}
.tc-d {
  color: #7b788f;
}
.tc-w {
  color: #ffffff;
}

/* Progress bars */
.perf-row {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px 20px;
}
.perf-item {
  margin-bottom: 14px;
}
.perf-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.perf-label span:first-child {
  font-family: var(--FM);
  font-size: 10px;
  color: #8a8880;
  letter-spacing: 0.06em;
}
.perf-label span:last-child {
  font-family: var(--FM);
  font-size: 10px;
  color: #00c87a;
}
.perf-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.perf-fill {
  height: 100%;
  background: linear-gradient(to right, var(--v2), var(--v));
  border-radius: 2px;
}

/* ── PROCESS ── */
.process {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.pc {
  background: var(--void);
  padding: 36px 26px;
  position: relative;
  border: 1px solid var(--rim);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(134, 28, 255, 0.03);
  text-align: left;
}
.pc::before {
  content: attr(data-n);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--FM);
  font-size: 24px;
  font-weight: 700;
  color: rgba(134, 28, 255, 0.08);
  letter-spacing: -0.02em;
}
.pc h3 {
  font-family: var(--FH);
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pc p {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.7;
}
.pc-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--vd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 18px;
}

/* ── TECH STACK ── */
.stack {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.stack-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 52px;
  text-align: left;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stk-col {
  background: var(--void);
  padding: 28px;
  border: 1px solid var(--rim);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(134, 28, 255, 0.03);
  text-align: left;
}
.stk-head {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--v);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rim);
  font-weight: 700;
}
.stk-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stk-i {
  font-family: var(--FH);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  padding: 8px 0;
  border-bottom: 1px solid rgba(134, 28, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.stk-i:hover {
  color: var(--txt);
}
.stk-i::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cr);
  flex-shrink: 0;
  opacity: 0.5;
}
.stk-i:hover::before {
  opacity: 1;
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
  background: var(--deep);
}
.port-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  text-align: left;
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-card {
  background: var(--void);
  border: 1px solid var(--rim);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(134, 28, 255, 0.03);
  text-align: left;
}
.port-card:hover {
  border-color: var(--v2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(134, 28, 255, 0.08);
}
.port-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--pit) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border-bottom: 1px solid var(--rim);
}
.port-info {
  padding: 20px;
}
.port-name {
  font-family: var(--FH);
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 5px;
}
.port-desc {
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.6;
}
.port-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.port-tag {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--mid);
  background: var(--deep);
  border: 1px solid var(--rim);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ── PRICING ── */
.pricing {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.pricing .D2 {
  text-align: left;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.price-card {
  background: var(--deep);
  border: 1px solid var(--rim);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(134, 28, 255, 0.02);
  text-align: left;
}
.price-card:hover {
  border-color: var(--rim2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(134, 28, 255, 0.06);
}
.price-card.hot {
  border: 2px solid var(--v);
  position: relative;
  background: var(--void);
}
.price-card.hot::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--v);
  color: #ffffff;
  font-family: var(--FM);
  font-size: 8px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
}
.price-tier {
  font-family: var(--FM);
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 12px;
}
.price-val {
  font-family: var(--FH);
  font-size: 42px;
  font-weight: 900;
  color: var(--txt);
  line-height: 1;
  margin-bottom: 3px;
}
.price-val sub {
  font-size: 16px;
  font-weight: 400;
  vertical-align: baseline;
}
.price-cycle {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 18px;
}
.price-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 0;
}
.price-div {
  height: 1px;
  background: var(--rim);
  margin-bottom: 18px;
}
.price-list {
  list-style: none;
  flex: 1;
}
.price-list li {
  font-size: 13px;
  color: var(--mid);
  padding: 7px 0;
  border-bottom: 1px solid rgba(134, 28, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.price-list li::before {
  content: "✓";
  color: var(--cr);
  font-size: 11px;
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.price-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 11px;
}

/* ── CITY SECTION ── */
.cities {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.cities .D2 {
  text-align: left;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.city-card {
  background: var(--deep);
  border: 1px solid var(--rim);
  border-radius: 6px;
  padding: 28px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.city-card:hover {
  border-color: rgba(134, 28, 255, 0.3);
}
.city-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(134, 28, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.city-name {
  font-family: var(--FH);
  font-size: 26px;
  font-weight: 900;
  color: var(--txt);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.city-tag {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--cr);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
}
.city-copy {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 14px;
}
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cpill {
  font-family: var(--FM);
  font-size: 9px;
  color: var(--mid);
  background: var(--void);
  border: 1px solid var(--rim);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ── SEO CONTENT ── */
.seo-content {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
  background: var(--deep);
}
.seo-content .D2 {
  text-align: left;
}
.seo-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: left;
}
.seo-block p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.seo-block p strong {
  color: var(--txt);
  font-weight: 600;
}

/* ── FAQ ── */
.faq {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.faq .D2 {
  text-align: left;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 52px;
  align-items: start;
}
.fq {
  border-bottom: 1px solid var(--rim);
  padding: 20px 0;
  text-align: left;
}
.fq-q {
  font-family: var(--FH);
  font-size: 15px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.fq-q:hover {
  color: var(--v);
}
.fq-q::after {
  content: "+";
  font-family: var(--FM);
  font-size: 18px;
  color: var(--v);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.fq.active .fq-q::after {
  content: "−";
  transform: rotate(180deg);
}
.fq-a {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s cubic-bezier(0, 1, 0, 1),
    padding 0.3s ease;
  padding-top: 0;
}
.fq.active .fq-a {
  max-height: 500px;
  padding-top: 10px;
  transition:
    max-height 0.3s cubic-bezier(1, 0, 1, 0),
    padding 0.3s ease;
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 100px 0;
  background-image: linear-gradient(135deg, #340569 0%, #861cff 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 70% at 50% 50%,
    rgba(255, 75, 112, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-strip .D1 {
  color: #ffffff;
}
.cta-strip .D1 em {
  color: #ffc107;
  font-style: normal;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
}
.cta-strip .Btn-em {
  background: #ff4b70;
  color: #ffffff !important;
}
.cta-strip .Btn-em:hover {
  background: #e7395c;
  box-shadow: 0 8px 32px rgba(255, 75, 112, 0.45);
}
.cta-strip .Btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.cta-strip .Btn-ghost:hover {
  border-color: #ffffff;
  color: #ffc107 !important;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.cta-pill {
  font-family: var(--FM);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 11px;
  border-radius: 2px;
  letter-spacing: 0.07em;
}

/* ── CONTACT ── */
.contact {
  padding: 88px 0;
  border-bottom: 1px solid var(--rim);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ci {
  text-align: left;
}
.ci h3 {
  font-family: var(--FH);
  font-size: 14px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 3px;
}
.ci p {
  font-size: 13.5px;
  color: var(--mid);
}
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rim);
}
.ci-row:last-of-type {
  border-bottom: none;
}
.ci-ico {
  width: 36px;
  height: 36px;
  background: var(--vd);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(134, 28, 255, 0.15);
}
.cf {
  background: var(--deep);
  border: 1px solid var(--rim);
  border-radius: 8px;
  padding: 36px;
  text-align: left;
}
.cf-lbl {
  font-family: var(--FM);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.cf-inp {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(134, 28, 255, 0.15);
  border-radius: 4px;
  color: var(--txt);
  font-family: var(--FB);
  font-size: 14px;
  padding: 11px 15px;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.15s;
}
.cf-inp:focus {
  border-color: var(--v);
}
select.cf-inp {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23861cff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 32px;
}
textarea.cf-inp {
  resize: vertical;
  min-height: 96px;
}

/* ── SCROLL OBSERVER REVEAL ── */
.plat-card,
.vert-card,
.wp,
.pcard,
.pr-card,
.city-card,
.tc,
.fq,
.hs-cell,
.stk,
.sc-card,
.pc,
.stk-col,
.port-card,
.price-card,
.witem,
.sc {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .W,
  .W-sm {
    padding: 0 28px;
  }
  .hero-grid,
  .intro-grid,
  .why-split,
  .contact-grid,
  .faq-wrap,
  .seo-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hcard,
  .hero-trust {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .svc-grid,
  .stack-grid,
  .proc-grid,
  .port-grid,
  .price-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }
  .proc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .port-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .proc-grid,
  .port-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .D1 {
    font-size: clamp(38px, 11vw, 56px);
  }
  .svc-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stack-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .port-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* ── VISIBILITY, STACKING & FOOTER FIXES ── */
body.web-dev-page .header {
  z-index: 10 !important;
}
body.web-dev-page #navbar {
  z-index: 10000 !important;
}
body.web-dev-page .navtab {
  z-index: 99999 !important;
}
body.web-dev-page .hamburger {
  position: relative;
  z-index: 100000 !important;
}
body.web-dev-page .a_phone_call {
  position: relative;
  z-index: 100000 !important;
}

body.web-dev-page .page_info,
body.web-dev-page .page_info a,
body.web-dev-page .page_info span {
  color: rgba(255, 255, 255, 0.85) !important;
}
body.web-dev-page .page_info a:hover {
  color: #ff4b70 !important;
}

/* Footer Section Style Reset to match common-style.css exactly */
body.web-dev-page .footer_section h3 {
  font-family: "Mandatory Plaything", sans-serif !important;
  font-size: 30px !important;
  color: #ffffff !important;
  margin-top: -7px !important;
}
body.web-dev-page .footer_links h4 {
  font-family: "Poppins", sans-serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-left: -20px !important;
}
body.web-dev-page .footer_section .kwiq_info p {
  font-family: "Yu Gothic UI", sans-serif !important;
  font-size: 18px !important;
  color: #ffffff !important;
  margin-top: 15px !important;
  margin-bottom: 30px !important;
  line-height: 1.5 !important;
}
body.web-dev-page .footer_section .find_us h5 {
  font-family: "Poppins", sans-serif !important;
  font-size: 20px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
}
body.web-dev-page .footer_section .sub_links li,
body.web-dev-page .footer_section a {
  font-family: "Yu Gothic UI", sans-serif !important;
  font-size: 17px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}
body.web-dev-page .footer_section .sub_links li {
  margin: 25px 0 !important;
  list-style: disc !important;
  color: #ffffff !important;
}
body.web-dev-page .footer_section .con_list li {
  list-style: none !important;
  margin-bottom: -15px !important;
  margin-left: -20px !important;
}
body.web-dev-page .footer_section .con_list li p {
  font-family: "Yu Gothic UI", sans-serif !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  color: #ffffff !important;
  padding-left: 25px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}
body.web-dev-page .footer_section .con_list li p a {
  font-family: "Yu Gothic UI", sans-serif !important;
  font-size: 15px !important;
  color: #ffffff !important;
}
body.web-dev-page .footer_section .copyright h3 {
  font-family: "Yu Gothic UI", sans-serif !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  padding: 7px 0 !important;
  text-align: center !important;
}
body.web-dev-page .footer_section .copyright h3 span {
  font-family: "Yu Gothic UI", sans-serif !important;
  color: #ff4b70 !important;
  font-weight: 600 !important;
}
body.web-dev-page .footer_section .social_icn a {
  background: #ff4b70 !important;
  padding: 11px !important;
  border-radius: 4px !important;
  margin-right: 4px !important;
  display: inline-block !important;
}
body.web-dev-page .footer_section .social_icn a:hover {
  background: #ffffff !important;
  color: #ff4b70 !important;
}
body.web-dev-page .footer_section a:hover {
  color: #ff4b70 !important;
}
