/* website-web-app-development — migrated from pages.css */
/* ===== WEB DEVELOPMENT PAGE — CSS ===== */
:root {
  --wd-primary: var(--color-primary-d, #0f766e);
  --wd-dark:    #0b2b26;
  --wd-accent:  #00d4aa;
  --wd-light:   #f0fdfa;
  --wd-text:    #1e293b;
  --wd-muted:   #64748b;
  --wd-border:  #e2e8f0;
  --wd-radius:  10px;
  --wd-shadow:  0 4px 24px rgba(15,118,110,.10);
}

.wd-page { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--wd-text); background: #fff; }
.wd-container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.wd-section { padding: 72px 0; }
.wd-label { display: inline-block; background: rgba(15,118,110,.10); color: var(--wd-primary); font-size: 14px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.wd-title { font-size: 2.2rem; font-weight: 800; color: var(--wd-dark); line-height: 1.22; margin: 0 0 16px; }
.wd-subtitle { font-size: 1.08rem; color: var(--wd-muted); line-height: 1.7; margin: 0 0 32px; max-width: 620px; }
.wd-center { text-align: center; }
.wd-center .wd-subtitle { margin-left: auto; margin-right: auto; }

/* ===== HERO ===== */
.wd-hero {
  background: linear-gradient(135deg, #0b2b26 0%, #0c2a52 40%, #0f4080 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.wd-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,212,170,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.wd-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(15,118,110,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.wd-hero-inner { display: flex; align-items: center; gap: 52px; position: relative; z-index: 1; }
.wd-hero-left { flex: 0 0 56%; min-width: 0; }
.wd-hero-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.wd-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,170,.18); border: 1px solid rgba(0,212,170,.35); color: #00d4aa; font-size: 14px; font-weight: 700; padding: 6px 14px; border-radius: 20px; margin-bottom: 22px; }
.wd-hero-badge i { font-size: 14px; }
.wd-hero h1 { font-size: 2.7rem; font-weight: 900; color: #fff; line-height: 1.18; margin: 0 0 18px; }
.wd-hero h1 span { color: var(--wd-accent); }
.wd-hero-desc { font-size: 1.08rem; color: rgba(255,255,255,.8); line-height: 1.72; margin: 0 0 32px; max-width: 530px; }
.wd-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.wd-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--wd-primary); color: #fff; font-weight: 700; font-size: 14.5px; padding: 13px 26px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; transition: all .2s; }
.wd-btn-primary:hover { background: #115e59; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,118,110,.40); }
.wd-btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 700; font-size: 14.5px; padding: 13px 26px; border-radius: 8px; border: 2px solid rgba(255,255,255,.4); text-decoration: none; transition: all .2s; }
.wd-btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.wd-hero-stats { display: flex; gap: 28px; margin-top: 36px; }
.wd-hero-stat { text-align: center; }
.wd-hero-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--wd-accent); }
.wd-hero-stat span { font-size: 14px; color: rgba(255,255,255,.65); }
.wd-hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 28px; max-width: 320px; width: 100%; backdrop-filter: blur(8px); }
.wd-hero-card h3 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 18px; display: flex; align-items: center; gap: 8px; }
.wd-hero-card h3 i { color: var(--wd-accent); }
.wd-hero-service-list { list-style: none; margin: 0; padding: 0; }
.wd-hero-service-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: 14px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.wd-hero-service-list li:last-child { border-bottom: none; }
.wd-hero-service-list li i { color: var(--wd-accent); font-size: 14px; flex-shrink: 0; }

/* ===== TRUST BAR ===== */
.wd-trust { background: var(--wd-dark); padding: 22px 0; }
.wd-trust-inner { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.wd-trust-item { display: flex; align-items: center; gap: 10px; padding: 10px 30px; flex: 1; min-width: 160px; border-right: 1px solid rgba(255,255,255,.1); }
.wd-trust-item:last-child { border-right: none; }
.wd-trust-item i { font-size: 20px; color: var(--wd-accent); flex-shrink: 0; }
.wd-trust-item strong { display: block; color: #fff; font-size: 14px; font-weight: 700; }
.wd-trust-item span { color: rgba(255,255,255,.5); font-size: 14px; }

/* ===== SERVICES GRID ===== */
.wd-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.wd-svc-card { background: #fff; border: 1.5px solid var(--wd-border); border-radius: var(--wd-radius); padding: 30px 26px; transition: all .25s; position: relative; overflow: hidden; }
.wd-svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--wd-primary), var(--wd-accent)); transform: scaleX(0); transition: transform .25s; }
.wd-svc-card:hover { border-color: var(--wd-primary); box-shadow: var(--wd-shadow); transform: translateY(-3px); }
.wd-svc-card:hover::before { transform: scaleX(1); }
.wd-svc-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--wd-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.wd-svc-icon i { font-size: 22px; color: var(--wd-primary); }
.wd-svc-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 10px; color: var(--wd-dark); }
.wd-svc-card p { font-size: 14px; color: var(--wd-muted); line-height: 1.65; margin: 0 0 14px; }
.wd-svc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.wd-svc-tag { font-size: 14px; font-weight: 600; color: var(--wd-primary); background: var(--wd-light); padding: 3px 9px; border-radius: 12px; }

/* ===== PROCESS ===== */
.wd-process { background: var(--wd-light); }
.wd-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 44px; position: relative; }
.wd-process-steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--wd-primary), var(--wd-accent)); z-index: 0; }
.wd-process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.wd-step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--wd-primary), var(--wd-accent)); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(15,118,110,.30); }
.wd-step-num span { color: #fff; font-size: 20px; font-weight: 900; }
.wd-process-step h4 { font-size: 14.5px; font-weight: 700; color: var(--wd-dark); margin: 0 0 8px; }
.wd-process-step p { font-size: 14px; color: var(--wd-muted); line-height: 1.6; margin: 0; }

/* ===== TECHNOLOGIES ===== */
.wd-tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 40px; }
.wd-tech-item { background: #fff; border: 1.5px solid var(--wd-border); border-radius: var(--wd-radius); padding: 20px 14px; text-align: center; transition: all .2s; }
.wd-tech-item:hover { border-color: var(--wd-primary); box-shadow: 0 4px 16px rgba(15,118,110,.10); transform: translateY(-2px); }
.wd-tech-item i { font-size: 28px; color: var(--wd-primary); margin-bottom: 8px; display: block; }
.wd-tech-item span { font-size: 14px; font-weight: 600; color: var(--wd-muted); }

/* ===== WHY US ===== */
.wd-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.wd-why-card { background: #fff; border: 1.5px solid var(--wd-border); border-radius: var(--wd-radius); padding: 26px; display: flex; gap: 16px; align-items: flex-start; transition: box-shadow .2s; }
.wd-why-card:hover { box-shadow: var(--wd-shadow); border-color: rgba(15,118,110,.25); }
.wd-why-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--wd-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wd-why-icon i { font-size: 18px; color: var(--wd-primary); }
.wd-why-card h4 { font-size: 14.5px; font-weight: 700; color: var(--wd-dark); margin: 0 0 6px; }
.wd-why-card p { font-size: 14px; color: var(--wd-muted); line-height: 1.6; margin: 0; }

/* ===== PRICING ===== */
.wd-pricing { background: var(--wd-light); }
.wd-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.wd-price-card { background: #fff; border: 1.5px solid var(--wd-border); border-radius: 14px; padding: 30px 22px; position: relative; transition: all .25s; }
.wd-price-card.featured { border-color: var(--wd-primary); box-shadow: 0 8px 32px rgba(15,118,110,.18); }
.wd-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--wd-primary), var(--wd-accent)); color: #fff; font-size: 14px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.wd-price-card h3 { font-size: 16px; font-weight: 800; color: var(--wd-dark); margin: 0 0 6px; }
.wd-price-card .wd-price-type { font-size: 14px; color: var(--wd-muted); margin: 0 0 18px; }
.wd-price-amount { margin-bottom: 20px; }
.wd-price-amount .wd-price-from { font-size: 14px; color: var(--wd-muted); display: block; }
.wd-price-amount strong { font-size: 1.9rem; font-weight: 900; color: var(--wd-primary); }
.wd-price-amount em { font-size: 14px; color: var(--wd-muted); font-style: normal; }
.wd-price-features { list-style: none; margin: 0 0 22px; padding: 0; }
.wd-price-features li { font-size: 14px; color: var(--wd-text); padding: 6px 0; border-bottom: 1px solid var(--wd-border); display: flex; align-items: center; gap: 8px; }
.wd-price-features li:last-child { border-bottom: none; }
.wd-price-features li i { color: var(--wd-accent); font-size: 14px; flex-shrink: 0; }
.wd-price-features li.dim { color: var(--wd-muted); }
.wd-price-features li.dim i { color: #ccc; }
.wd-price-cta { display: block; text-align: center; background: var(--wd-primary); color: #fff; font-weight: 700; font-size: 14px; padding: 11px; border-radius: 8px; text-decoration: none; transition: background .2s; }
.wd-price-cta:hover { background: #115e59; color: #fff; }
.wd-price-card.featured .wd-price-cta { background: linear-gradient(90deg, var(--wd-primary), var(--wd-accent)); }

/* ===== PORTFOLIO ===== */
.wd-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.wd-portfolio-card { background: #fff; border: 1.5px solid var(--wd-border); border-radius: var(--wd-radius); overflow: hidden; transition: all .25s; }
.wd-portfolio-card:hover { box-shadow: var(--wd-shadow); transform: translateY(-3px); border-color: rgba(15,118,110,.2); }
.wd-portfolio-thumb { height: 170px; background: linear-gradient(135deg, var(--wd-dark), #0f4080); display: flex; align-items: center; justify-content: center; }
.wd-portfolio-thumb i { font-size: 42px; color: rgba(255,255,255,.25); }
.wd-portfolio-info { padding: 18px; }
.wd-portfolio-info h4 { font-size: 14.5px; font-weight: 700; color: var(--wd-dark); margin: 0 0 6px; }
.wd-portfolio-info p { font-size: 14px; color: var(--wd-muted); margin: 0 0 10px; line-height: 1.55; }
.wd-portfolio-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.wd-portfolio-tag { font-size: 14px; font-weight: 600; color: var(--wd-primary); background: var(--wd-light); padding: 2px 8px; border-radius: 10px; }

/* ===== TESTIMONIALS ===== */

/* ===== INDUSTRIES ===== */
.wd-industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.wd-industry-item { background: #fff; border: 1.5px solid var(--wd-border); border-radius: var(--wd-radius); padding: 20px 16px; text-align: center; transition: all .2s; }
.wd-industry-item:hover { border-color: var(--wd-primary); box-shadow: var(--wd-shadow); }
.wd-industry-item i { font-size: 24px; color: var(--wd-primary); margin-bottom: 8px; display: block; }
.wd-industry-item span { font-size: 14px; font-weight: 600; color: var(--wd-dark); }

/* ===== FAQ ===== */
.wd-faq { background: var(--wd-light); }
.wd-faq-list { max-width: 820px; margin: 44px auto 0; }
.wd-faq-item { background: #fff; border: 1.5px solid var(--wd-border); border-radius: var(--wd-radius); margin-bottom: 10px; overflow: hidden; }
.wd-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--wd-dark); gap: 12px; user-select: none; }
.wd-faq-q .wd-faq-icon { color: var(--wd-primary); font-size: 14px; flex-shrink: 0; transition: transform .25s; }
.wd-faq-item.open .wd-faq-q .wd-faq-icon { transform: rotate(45deg); }
.wd-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.wd-faq-a-inner { padding: 0 22px 18px; font-size: 14px; color: var(--wd-muted); line-height: 1.72; }

/* ===== SEO CONTENT BLOCK ===== */
.wd-seo-content { background: #fff; }
.wd-seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 36px; }
.wd-seo-cols h3 { font-size: 1.25rem; font-weight: 800; color: var(--wd-dark); margin: 0 0 12px; }
.wd-seo-cols p { font-size: 14px; color: var(--wd-muted); line-height: 1.75; margin: 0 0 14px; }
.wd-seo-cols ul { padding: 0 0 0 18px; margin: 0 0 14px; }
.wd-seo-cols ul li { font-size: 14px; color: var(--wd-muted); line-height: 1.7; margin-bottom: 6px; }

/* ===== CTA BAND ===== */
.wd-cta { background: linear-gradient(135deg, #0b2b26 0%, #0c2a52 50%, #0f4080 100%); padding: 68px 0; text-align: center; position: relative; overflow: hidden; }
.wd-cta::before { content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(0,212,170,.15) 0%, transparent 70%); }
.wd-cta h2 { font-size: 2rem; font-weight: 900; color: #fff; margin: 0 0 14px; position: relative; }
.wd-cta p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin: 0 0 32px; position: relative; }
.wd-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.wd-btn-cta-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--wd-primary) !important; font-weight: 700; font-size: 14.5px; padding: 13px 28px; border-radius: 8px; text-decoration: none !important; transition: all .2s; }
.wd-btn-cta-white:hover, .wd-btn-cta-white:focus, .wd-btn-cta-white:active { background: var(--wd-accent); color: #fff !important; transform: translateY(-1px); }
.wd-btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 700; font-size: 14.5px; padding: 13px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,.4); text-decoration: none; transition: all .2s; }
.wd-btn-cta-outline:hover { border-color: var(--wd-accent); color: var(--wd-accent); }

/* ===== PAYMENTS ===== */
.wd-payments { background: #fff; padding: 32px 0; border-top: 1px solid var(--wd-border); }
.wd-pay-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.wd-pay-label { font-size: 14px; font-weight: 700; color: var(--wd-muted); margin-right: 8px; }
.wd-pay-inner img { height: 28px; opacity: .7; filter: grayscale(40%); transition: opacity .2s; }
.wd-pay-inner img:hover { opacity: 1; }

/* ===== RESPONSIVE ===== */
@@media (max-width: 1023px) {
  .wd-hero-right { display: none; }
  .wd-hero-left { flex: 0 0 100%; }
  .wd-services-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-process-steps { grid-template-columns: repeat(2, 1fr); }
  .wd-process-steps::before { display: none; }
  .wd-tech-grid { grid-template-columns: repeat(4, 1fr); }
  .wd-industries-grid { grid-template-columns: repeat(3, 1fr); }
  .wd-seo-cols { grid-template-columns: 1fr; gap: 24px; }
}
@@media (max-width: 767px) {
  .wd-title { font-size: 1.7rem; }
  .wd-hero h1 { font-size: 1.9rem; }
  .wd-section { padding: 48px 0; }
  .wd-services-grid { grid-template-columns: 1fr; }
  .wd-why-grid { grid-template-columns: 1fr; }
  .wd-portfolio-grid { grid-template-columns: 1fr; }
  .wd-pricing-grid { grid-template-columns: 1fr; }
  .wd-tech-grid { grid-template-columns: repeat(3, 1fr); }
  .wd-industries-grid { grid-template-columns: repeat(2, 1fr); }
  .wd-trust-inner { flex-direction: column; gap: 0; }
  .wd-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
  .wd-hero-stats { flex-wrap: wrap; gap: 16px; }
  .wd-process-steps { grid-template-columns: 1fr 1fr; }
}

