/* WEB DESIGN NEPAL PAGE — Additional styles
   Self-contained. All rules scoped to .is-web-design-page.
   Loaded exclusively on template-web-design.php.
   Design tokens inherited from main.css.
═══════════════════════════════════════════════════════════ */

/* ── Section / layout utilities ────────────────────────── */
.section     { padding: clamp(72px,8vw,112px) 0; }
.section-alt { background: var(--mist); }
.section-dark{ background: var(--ink); }
.wrap        { width: var(--w); margin: 0 auto; }

/* ── Button variants ────────────────────────────────────── */
.btn-ghost {
  display:inline-flex; align-items:center; gap:9px;
  background:rgba(255,255,255,.04); color:rgba(255,255,255,.8);
  font-family:var(--ff-body); font-size:.95rem; font-weight:500;
  padding:13px 26px; border-radius:var(--r2);
  border:1px solid rgba(255,255,255,.15);
  text-decoration:none;
  transition:all .25s var(--ease);
}
.btn-ghost:hover { border-color:rgba(255,255,255,.35); color:#fff; transform:translateY(-2px); }

.btn-out {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--ink);
  font-family:var(--ff-body); font-size:.88rem; font-weight:600;
  padding:11px 22px; border-radius:var(--r2);
  border:1.5px solid var(--line2);
  text-decoration:none;
  transition:all .25s var(--ease);
}
.btn-out:hover { border-color:var(--fire); color:var(--fire); }

/* ── Scroll reveal ──────────────────────────────────────── */
.is-web-design-page .reveal {
  opacity:0; transform:translateY(22px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.is-web-design-page .reveal.revealed {
  opacity:1; transform:translateY(0);
}
.is-web-design-page .reveal-d1.revealed { transition-delay:.1s; }
.is-web-design-page .reveal-d2.revealed { transition-delay:.2s; }
.is-web-design-page .reveal-d3.revealed { transition-delay:.3s; }

/* ── Section heading block ──────────────────────────────── */
.is-web-design-page .section-hd {
  margin-bottom:52px;
}

/* ── Eyebrow ────────────────────────────────────────────── */
.is-web-design-page .eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--ff-body); font-size:.75rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em;
  color:var(--fire); margin-bottom:14px;
}
.is-web-design-page .eyebrow::before {
  content:''; width:18px; height:2px;
  background:var(--fire); border-radius:1px;
}

/* ── H2 ─────────────────────────────────────────────────── */
.is-web-design-page .h2 {
  font-family:var(--ff-head);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:900; color:var(--ink);
  line-height:1.15; letter-spacing:-.03em; margin:0 0 20px;
}
.is-web-design-page .h2 em { font-style:normal; color:var(--fire); }
.is-web-design-page .h2-white { color:#fff; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.is-web-design-page #hero {
  background: var(--ink);
  min-height: 90svh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* Glow orbs */
.is-web-design-page .hero-glow {
  position:absolute; top:-80px; right:-60px;
  width:580px; height:580px; border-radius:50%;
  background:radial-gradient(circle,rgba(240,98,12,.13) 0%,transparent 68%);
  pointer-events:none; z-index:1;
}
.is-web-design-page .hero-glow2 {
  position:absolute; bottom:-60px; left:-80px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle,rgba(22,43,71,.7) 0%,transparent 70%);
  pointer-events:none; z-index:1;
}

/* Hero body grid */
.is-web-design-page .hero-body {
  position:relative; z-index:2;
  width: var(--w); margin: 0 auto;
  padding: 80px 0 72px;
  display:grid; gap:56px;
  grid-template-columns: 56fr 44fr;
  align-items: center;
}
.admin-bar.is-web-design-page .hero-body { padding-top:112px; }
@media screen and (max-width:782px){
  .admin-bar.is-web-design-page .hero-body { padding-top:126px; }
}
@media(max-width:960px){
  .is-web-design-page .hero-body { grid-template-columns:1fr; padding-top:72px; }
  .is-web-design-page .hero-right-col { display:none !important; }
}

/* Pill dot */
.is-web-design-page .pill-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--fire); flex-shrink:0;
  animation:pulse 2s infinite;
}

/* Hero pill */
.is-web-design-page .hero-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(240,98,12,.12); border:1px solid rgba(240,98,12,.28);
  color:var(--fire); font-family:var(--ff-body); font-size:.82rem; font-weight:600;
  padding:7px 14px; border-radius:100px; letter-spacing:.03em; text-transform:uppercase;
  margin-bottom:20px;
  opacity:0; animation:fadeUp .6s .10s var(--ease) forwards;
}

/* h1 span variants */
.h1-dim {
  display:block; font-style:italic; font-weight:300;
  color:rgba(255,255,255,.5); margin-bottom:2px;
}
.h1-white { color:#fff; font-weight:700; }
.h1-fire  { color:var(--fire); font-weight:700; }
.h1-underline {
  display:block; color:#fff; font-weight:700;
  position:relative; padding-bottom:6px;
}
.h1-underline::after {
  content:''; position:absolute; left:0; bottom:0;
  height:3px; width:0;
  background:linear-gradient(90deg,var(--fire),transparent);
  border-radius:2px;
  transition:width 1.4s .7s var(--ease);
}
.h1-underline.drawn::after { width:100%; }

/* Hero entry animations */
.is-web-design-page .hero-h1      { opacity:0; animation:fadeUp .7s .25s var(--ease) forwards; }
.is-web-design-page .hero-sub     { opacity:0; animation:fadeUp .7s .40s var(--ease) forwards; }
.is-web-design-page .hero-actions { opacity:0; animation:fadeUp .7s .55s var(--ease) forwards; }
.is-web-design-page .hero-right-col {
  position:relative;
  opacity:0; animation:fadeIn .9s .45s var(--ease) forwards;
}

/* hero-h1 layout */
.is-web-design-page .hero-h1 {
  font-family:var(--ff-head);
  font-size:clamp(2rem,4vw,3.1rem);
  font-weight:900; line-height:1.12;
  letter-spacing:-.03em; margin:0 0 22px;
}
.is-web-design-page .hero-sub {
  font-family:var(--ff-body); font-size:1.05rem;
  color:rgba(255,255,255,.68); line-height:1.7;
  max-width:540px; margin:0 0 32px;
}
.is-web-design-page .hero-actions {
  display:flex; flex-wrap:wrap; gap:12px; margin-bottom:0;
}

/* Hero stats */
.is-web-design-page .hero-stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--line);
  border-top:1px solid var(--line); margin-top:48px;
  opacity:0; animation:fadeUp .7s .75s var(--ease) forwards;
}
.is-web-design-page .hero-stats .hstat {
  background:var(--ink); padding:22px 18px;
}
.is-web-design-page .hstat-n {
  font-family:var(--ff-head); font-size:1.7rem; font-weight:900;
  color:var(--fire); line-height:1;
}
.is-web-design-page .hstat-n sup {
  font-size:.7rem; font-weight:700; color:rgba(255,255,255,.5);
  vertical-align:super;
}
.is-web-design-page .hstat-l {
  font-size:.72rem; color:rgba(255,255,255,.4);
  margin-top:5px; line-height:1.4; text-transform:uppercase; letter-spacing:.05em;
}

/* ═══════════════════════════════════════════════════════════
   BROWSER PANEL (hero right col)
═══════════════════════════════════════════════════════════ */
.is-web-design-page .browser-panel {
  background:#111827;
  border:1px solid rgba(255,255,255,.09);
  border-radius:14px; overflow:hidden;
  box-shadow:0 32px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  position:relative;
}

/* Chrome bar */
.is-web-design-page .bp-chrome {
  height:38px;
  background:rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.07);
  display:flex; align-items:center; gap:10px;
  padding:0 14px;
}
.is-web-design-page .bp-dots {
  display:flex; gap:5px; flex-shrink:0;
}
.is-web-design-page .bp-dot {
  width:8px; height:8px; border-radius:50%; display:block;
}
.is-web-design-page .bp-dot-r { background:#ff5f57; }
.is-web-design-page .bp-dot-y { background:#febc2e; }
.is-web-design-page .bp-dot-g { background:#28c840; }

.is-web-design-page .bp-urlbar {
  flex:1; max-width:60%;
  background:rgba(255,255,255,.05);
  border-radius:20px; padding:4px 10px;
  display:flex; align-items:center; gap:5px;
  overflow:hidden;
}
.is-web-design-page .bp-lock { color:rgba(255,255,255,.3); flex-shrink:0; }
.is-web-design-page .bp-url {
  font-family:monospace; font-size:.65rem;
  color:rgba(255,255,255,.35); white-space:nowrap;
  overflow:hidden; text-overflow:ellipsis;
}
.is-web-design-page .bp-reload {
  margin-left:auto; color:rgba(255,255,255,.25);
  display:flex; align-items:center;
}

/* Browser content area */
.is-web-design-page .bp-content {
  background:#0f172a;
  padding:0 0 20px;
  min-height:280px;
  position:relative;
}

/* Site header inside browser */
.is-web-design-page .bp-site-header {
  background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.05);
  padding:8px 14px;
  display:flex; align-items:center; justify-content:space-between;
}
.is-web-design-page .bp-site-logo {
  width:48px; height:8px; border-radius:4px;
  background:rgba(255,255,255,.2);
}
.is-web-design-page .bp-nav {
  display:flex; align-items:center; gap:8px;
}
.is-web-design-page .bp-nav-item {
  width:22px; height:5px; border-radius:3px;
  background:rgba(255,255,255,.12); display:block;
}
.is-web-design-page .bp-nav-cta {
  width:32px; height:14px; border-radius:4px;
  background:var(--fire); opacity:.7; display:block;
}

/* Site hero area inside browser */
.is-web-design-page .bp-site-hero {
  padding:20px 14px 16px;
}
.is-web-design-page .bp-hero-lines {
  margin-bottom:10px;
}
.is-web-design-page .bp-line {
  border-radius:4px; background:rgba(255,255,255,.15);
  margin-bottom:7px;
}
.is-web-design-page .bp-line-1 { width:72%; height:10px; background:rgba(255,255,255,.22); }
.is-web-design-page .bp-line-2 { width:54%; height:10px; background:rgba(255,255,255,.16); }
.is-web-design-page .bp-line-3 { width:80%; height:6px; background:rgba(255,255,255,.09); }
.is-web-design-page .bp-hero-btn {
  width:64px; height:18px; border-radius:5px;
  background:var(--fire); margin-top:4px;
}

/* Feature columns inside browser */
.is-web-design-page .bp-features {
  display:flex; gap:8px; padding:0 14px;
}
.is-web-design-page .bp-feat {
  flex:1; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius:6px; padding:10px 8px;
}
.is-web-design-page .bp-feat-icon {
  width:18px; height:18px; border-radius:4px;
  background:rgba(240,98,12,.35); margin-bottom:7px;
}
.is-web-design-page .bp-fline {
  height:5px; border-radius:3px;
  background:rgba(255,255,255,.1); margin-bottom:4px;
}
.is-web-design-page .bp-fline-a { width:80%; }
.is-web-design-page .bp-fline-b { width:55%; }

/* PageSpeed badge */
.is-web-design-page .bp-pagespeed {
  position:absolute; bottom:12px; right:12px;
  background:var(--fire); color:#fff;
  font-family:var(--ff-body); font-size:.62rem; font-weight:700;
  padding:5px 9px; border-radius:6px;
  display:flex; align-items:center; gap:4px;
  box-shadow:0 4px 14px rgba(240,98,12,.45);
  animation:floatBob 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   WHY MATTERS — STAT CARDS
═══════════════════════════════════════════════════════════ */
.is-web-design-page .stat-cards {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; margin-top:0;
}
@media(max-width:860px){
  .is-web-design-page .stat-cards { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:520px){
  .is-web-design-page .stat-cards { grid-template-columns:1fr; }
}

.is-web-design-page .stat-card {
  background:var(--ink);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r2); padding:32px 24px;
  box-shadow:0 4px 20px rgba(0,0,0,.18);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.is-web-design-page .stat-card:hover {
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(0,0,0,.28);
}
.is-web-design-page .stat-num {
  font-family:var(--ff-head); font-size:2.5rem; font-weight:900;
  color:var(--fire); line-height:1; margin-bottom:8px;
}
.is-web-design-page .stat-unit {
  font-size:1.4rem; font-weight:700;
}
.is-web-design-page .stat-label {
  font-family:var(--ff-head); font-size:.9rem; font-weight:700;
  color:#fff; margin-bottom:12px; line-height:1.4;
}
.is-web-design-page .stat-desc {
  font-size:.84rem; color:rgba(255,255,255,.45); line-height:1.65; margin:0;
}
.is-web-design-page .stat-sub {
  margin-top:36px; font-size:1rem; color:var(--text);
  line-height:1.75; text-align:center; max-width:700px;
  margin-left:auto; margin-right:auto;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════ */
.is-web-design-page .wd-svc-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px;
}
@media(max-width:960px){
  .is-web-design-page .wd-svc-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:520px){
  .is-web-design-page .wd-svc-grid { grid-template-columns:1fr; }
}

.is-web-design-page .wd-svc-card {
  background:#fff;
  border:1px solid var(--line2);
  border-top:3px solid transparent;
  border-radius:var(--r2); padding:28px;
  transition:all .3s var(--ease);
}
.is-web-design-page .wd-svc-card:hover {
  border-top-color:var(--fire);
  box-shadow:0 12px 40px rgba(8,17,31,.09);
  transform:translateY(-3px);
}
.is-web-design-page .wd-svc-icon {
  width:44px; height:44px; border-radius:var(--r1);
  background:rgba(240,98,12,.09); color:var(--fire);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  transition:background .25s var(--ease);
}
.is-web-design-page .wd-svc-card:hover .wd-svc-icon {
  background:rgba(240,98,12,.16);
}
.is-web-design-page .wd-svc-card h3 {
  font-family:var(--ff-head); font-size:1.02rem; font-weight:800;
  color:var(--ink); margin:0 0 10px; letter-spacing:-.01em;
}
.is-web-design-page .wd-svc-card p {
  font-size:.87rem; color:var(--text2); line-height:1.7; margin:0;
}

/* AdSense slot */
.is-web-design-page .adsense-wrap {
  margin-top:56px;
}

/* ═══════════════════════════════════════════════════════════
   DIFFERENTIATORS
═══════════════════════════════════════════════════════════ */
.is-web-design-page .diff-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media(max-width:960px){
  .is-web-design-page .diff-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:520px){
  .is-web-design-page .diff-grid { grid-template-columns:1fr; }
}

.is-web-design-page .diff-card {
  background:#fff;
  border:1px solid var(--line2);
  border-radius:var(--r2); padding:28px 22px;
  transition:all .3s var(--ease);
}
.is-web-design-page .diff-card:hover {
  box-shadow:0 14px 44px rgba(8,17,31,.1);
  transform:translateY(-4px);
  border-color:rgba(240,98,12,.2);
}
.is-web-design-page .diff-icon {
  width:52px; height:52px; border-radius:var(--r2);
  background:rgba(240,98,12,.08); color:var(--fire);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  transition:background .25s var(--ease);
}
.is-web-design-page .diff-card:hover .diff-icon {
  background:rgba(240,98,12,.15);
}
.is-web-design-page .diff-card h3 {
  font-family:var(--ff-head); font-size:1rem; font-weight:800;
  color:var(--ink); margin:0 0 10px; letter-spacing:-.01em;
}
.is-web-design-page .diff-card p {
  font-size:.86rem; color:var(--text2); line-height:1.68; margin:0;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════════════ */
.is-web-design-page .wd-process-steps {
  display:flex; flex-direction:column; gap:0;
  position:relative;
}
.is-web-design-page .wd-process-steps::before {
  content:''; position:absolute;
  left:39px; top:0; bottom:0; width:2px;
  background:linear-gradient(180deg,var(--fire) 0%,rgba(240,98,12,.1) 100%);
  z-index:0;
}

.is-web-design-page .wd-step {
  display:flex; align-items:flex-start; gap:24px;
  padding:0 0 40px 0;
  position:relative; z-index:1;
}
.is-web-design-page .wd-step:last-child { padding-bottom:0; }

.is-web-design-page .wd-step-num {
  width:80px; height:80px; border-radius:50%; flex-shrink:0;
  background:var(--ink); border:2px solid var(--fire);
  color:var(--fire);
  font-family:var(--ff-head); font-size:1.3rem; font-weight:900;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 6px rgba(240,98,12,.08);
  position:relative;
  /* decorative large number behind */
}
.is-web-design-page .wd-step-num::before {
  content:attr(aria-hidden);
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-size:3.5rem; font-weight:900; opacity:.08;
  color:#fff; z-index:0; pointer-events:none;
  line-height:1;
}

.is-web-design-page .wd-step-body {
  padding-top:20px; flex:1;
}
.is-web-design-page .wd-step-body h3 {
  font-family:var(--ff-head); font-size:1.1rem; font-weight:800;
  color:var(--ink); margin:0 0 10px; letter-spacing:-.02em;
  display:flex; align-items:center; flex-wrap:wrap; gap:10px;
}
.is-web-design-page .wd-step-week {
  font-family:var(--ff-body); font-size:.72rem; font-weight:600;
  color:var(--fire); background:rgba(240,98,12,.1);
  border:1px solid rgba(240,98,12,.2);
  padding:2px 9px; border-radius:20px; letter-spacing:.02em;
}
.is-web-design-page .wd-step-body p {
  font-size:.9rem; color:var(--text2); line-height:1.7; margin:0;
}

@media(max-width:520px){
  .is-web-design-page .wd-step-num { width:56px; height:56px; font-size:1rem; }
  .is-web-design-page .wd-process-steps::before { left:27px; }
}

/* ═══════════════════════════════════════════════════════════
   TECH STACK
═══════════════════════════════════════════════════════════ */
.is-web-design-page .tech-group {
  margin-bottom:28px;
}
.is-web-design-page .tech-group:last-child { margin-bottom:0; }

.is-web-design-page .tech-group-label {
  font-family:var(--ff-body); font-size:.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.12em;
  color:var(--text2); margin:0 0 12px;
}
.is-web-design-page .tech-pills {
  display:flex; flex-wrap:wrap; gap:10px;
}
.is-web-design-page .tech-pill {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--ff-body); font-size:.82rem; font-weight:500;
  color:var(--text);
  border:1px solid var(--line2); border-radius:20px;
  padding:6px 14px;
  background:#fff;
  transition:border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  cursor:default;
}
.is-web-design-page .tech-pill svg { color:var(--text2); flex-shrink:0; }
.is-web-design-page .tech-pill:hover {
  border-color:var(--fire); color:var(--fire);
  box-shadow:0 4px 12px rgba(240,98,12,.1);
}
.is-web-design-page .tech-pill:hover svg { color:var(--fire); }

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.is-web-design-page .pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:24px; align-items:start;
}
@media(max-width:860px){
  .is-web-design-page .pricing-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
}

.is-web-design-page .pricing-card {
  background:#fff; border:1px solid var(--line2);
  border-radius:var(--r3); padding:36px 28px;
  position:relative; transition:all .3s var(--ease);
}
.is-web-design-page .pricing-card:hover {
  box-shadow:0 16px 48px rgba(8,17,31,.1);
  transform:translateY(-3px);
}

/* Featured card */
.is-web-design-page .pricing-card-featured {
  border:2px solid var(--fire);
  transform:scale(1.03);
  box-shadow:0 16px 52px rgba(240,98,12,.2);
  z-index:1;
}
.is-web-design-page .pricing-card-featured:hover {
  transform:scale(1.03) translateY(-4px);
  box-shadow:0 24px 60px rgba(240,98,12,.3);
}

.is-web-design-page .pricing-badge {
  position:absolute; top:-14px; left:50%;
  transform:translateX(-50%);
  background:var(--fire); color:#fff;
  font-family:var(--ff-body); font-size:.7rem; font-weight:700;
  padding:4px 14px; border-radius:20px; letter-spacing:.05em;
  text-transform:uppercase; white-space:nowrap;
}

.is-web-design-page .pricing-hd { margin-bottom:24px; }
.is-web-design-page .pricing-name {
  font-family:var(--ff-head); font-size:1rem; font-weight:800;
  color:var(--ink); margin:0 0 10px; letter-spacing:-.01em;
}
.is-web-design-page .pricing-price {
  display:flex; align-items:flex-start; gap:3px;
  line-height:1; margin-bottom:8px;
}
.is-web-design-page .pricing-currency {
  font-family:var(--ff-head); font-size:1.2rem; font-weight:700;
  color:var(--fire); margin-top:6px;
}
.is-web-design-page .pricing-amount {
  font-family:var(--ff-head); font-size:2.8rem; font-weight:900;
  color:var(--ink); letter-spacing:-.04em;
}
.is-web-design-page .pricing-plus {
  font-size:1.4rem; font-weight:700; color:var(--text2);
  margin-top:6px;
}
.is-web-design-page .pricing-best {
  font-size:.77rem; color:var(--text2); margin:0;
}

.is-web-design-page .pricing-features {
  list-style:none; padding:0; margin:0 0 28px;
  display:flex; flex-direction:column; gap:10px;
  border-top:1px solid var(--line); padding-top:20px;
}
.is-web-design-page .pricing-features li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:.88rem; color:var(--text); line-height:1.5;
}
.is-web-design-page .pf-check {
  width:20px; height:20px; border-radius:50%;
  background:rgba(240,98,12,.1); color:var(--fire);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}

.is-web-design-page .pricing-cta {
  width:100%; justify-content:center;
  font-size:.9rem; padding:14px 24px;
}
.is-web-design-page .pricing-card-featured .btn-fire {
  display:inline-flex; align-items:center; justify-content:center;
  width:100%;
  font-size:.9rem; padding:14px 24px;
}

.is-web-design-page .pricing-note {
  text-align:center; margin-top:32px;
  font-size:.83rem; color:var(--text2);
}
.is-web-design-page .pricing-note a {
  color:var(--fire); text-decoration:none;
  border-bottom:1px solid rgba(240,98,12,.3);
}
.is-web-design-page .pricing-note a:hover { border-bottom-color:var(--fire); }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.is-web-design-page .faq-list {
  max-width:760px; margin:0 auto;
  display:flex; flex-direction:column; gap:12px;
}
.is-web-design-page .faq-item {
  background:#fff; border:1px solid var(--line2);
  border-radius:var(--r2); overflow:hidden;
  transition:box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.is-web-design-page .faq-item.is-open {
  border-color:rgba(240,98,12,.3);
  box-shadow:0 6px 24px rgba(8,17,31,.07);
}
.is-web-design-page .faq-q {
  width:100%; display:flex; align-items:center;
  justify-content:space-between; gap:12px;
  background:transparent; border:none; cursor:pointer;
  padding:20px 24px; text-align:left;
  font-family:var(--ff-head); font-size:1rem; font-weight:700;
  color:var(--ink); letter-spacing:-.01em;
}
.is-web-design-page .faq-q span { flex:1; }
.is-web-design-page .faq-icon {
  flex-shrink:0; color:var(--text2);
  transition:transform .3s var(--ease), color .25s var(--ease);
}
.is-web-design-page .faq-item.is-open .faq-icon {
  transform:rotate(180deg); color:var(--fire);
}
.is-web-design-page .faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .4s var(--ease);
}
.is-web-design-page .faq-a p {
  padding:18px 24px 22px;
  font-size:.92rem; color:var(--text); line-height:1.7; margin:0;
  border-top:1px solid var(--line);
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.is-web-design-page #cta {
  background:linear-gradient(135deg, var(--fire) 0%, var(--fire2) 100%);
  padding:clamp(72px,8vw,112px) 0;
  position:relative; overflow:hidden;
}
.is-web-design-page #cta::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0,0,0,.15), transparent),
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(0,0,0,.1), transparent);
  pointer-events:none;
}
.is-web-design-page #cta::after {
  content:'WEB DESIGN';
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-family:var(--ff-head); font-size:11vw; font-weight:900;
  color:transparent; -webkit-text-stroke:2px rgba(255,255,255,.06);
  letter-spacing:-.06em; line-height:1;
  pointer-events:none; user-select:none; white-space:nowrap;
}
.is-web-design-page .cta-inner {
  position:relative; z-index:1;
  text-align:center;
}
.is-web-design-page .cta-content {
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.is-web-design-page .cta-h2 {
  font-family:var(--ff-head); font-size:clamp(1.6rem,3.5vw,2.6rem);
  font-weight:900; color:#fff; line-height:1.2;
  letter-spacing:-.03em; margin:0;
}
.is-web-design-page .cta-sub {
  font-size:1.05rem; color:rgba(255,255,255,.85);
  line-height:1.65; max-width:500px; margin:0;
}
.btn-cta-white {
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; color:var(--fire);
  font-family:var(--ff-body); font-size:.95rem; font-weight:700;
  padding:16px 32px; border-radius:var(--r2);
  border:none; text-decoration:none;
  box-shadow:0 8px 32px rgba(0,0,0,.2);
  transition:all .25s var(--ease);
}
.btn-cta-white:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 40px rgba(0,0,0,.25);
  color:var(--fire2);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media(max-width:768px){
  .is-web-design-page .diff-grid { grid-template-columns:repeat(2,1fr); }
  .is-web-design-page .wd-svc-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:520px){
  .is-web-design-page .diff-grid { grid-template-columns:1fr; }
  .is-web-design-page .wd-svc-grid { grid-template-columns:1fr; }
  .is-web-design-page .stat-cards { grid-template-columns:1fr; }
  .is-web-design-page .hero-stats { grid-template-columns:1fr; }
  .is-web-design-page .hero-stats { gap:0; }
  .is-web-design-page .tech-pills { gap:8px; }
  .is-web-design-page .pricing-card-featured {
    transform:scale(1);
  }
  .is-web-design-page .pricing-card-featured:hover {
    transform:translateY(-3px);
  }
  .is-web-design-page .faq-q { font-size:.93rem; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════ */
@media(prefers-reduced-motion:reduce){
  .is-web-design-page .hero-pill,
  .is-web-design-page .hero-h1,
  .is-web-design-page .hero-sub,
  .is-web-design-page .hero-actions,
  .is-web-design-page .hero-stats,
  .is-web-design-page .hero-right-col {
    opacity:1; animation:none;
  }
  .is-web-design-page .pill-dot,
  .is-web-design-page .bp-pagespeed { animation:none; }
  .is-web-design-page .reveal {
    opacity:1; transform:none; transition:none;
  }
  .h1-underline::after { transition:none; }
}
