/* custom-software-development — service + pricing + quote-request page styles */
:root {
  --brand: #14b8a6;
  --brand-dark: #0f766e;
  --green: #16a34a;
  --amber: #d97706;
  --red: #dc2626;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
}
*, *::before, *::after { box-sizing: border-box; }
.csd-wrap { font-family: 'Inter', system-ui, sans-serif; color: var(--text); }

/* ── HERO ── */
.csd-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #064e3b 100%);
  padding: 64px 20px 90px;
  text-align: center; position: relative; overflow: hidden;
}
.csd-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 40px; background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.csd-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.4);
  color: #6ee7b7; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px;
}
.csd-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -.03em;
  margin: 0 auto 16px; max-width: 860px;
}
.csd-hero h1 span { color: #6ee7b7; }
.csd-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.65);
  max-width: 660px; margin: 0 auto 32px; line-height: 1.7;
}
.csd-price-highlight {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: rgba(255,255,255,.1); border: 2px solid rgba(110,231,183,.4);
  border-radius: 16px; padding: 16px 32px; margin: 0 auto 32px;
}
.csd-price-highlight .from { font-size: 15px; color: rgba(255,255,255,.5); font-weight: 600; }
.csd-price-highlight .price { font-size: 2.5rem; font-weight: 900; color: #fff; }
.csd-price-highlight .unit { font-size: 14px; color: #6ee7b7; font-weight: 700; }
.csd-hero-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px;
}
.csd-hero-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); padding: 6px 14px; border-radius: 20px;
  font-size: 14px; font-weight: 600;
}
.csd-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.csd-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; text-decoration: none; padding: 16px 32px;
  border-radius: 14px; font-size: 1rem; font-weight: 800;
  box-shadow: 0 8px 24px rgba(16,185,129,.4); transition: all .2s;
}
.csd-hero-cta:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
.csd-hero-cta2 {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85); text-decoration: none; padding: 14px 24px;
  border-radius: 14px; font-size: .95rem; font-weight: 700; transition: all .2s;
}
.csd-hero-cta2:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }

/* ── SECTION ── */
.csd-section { padding: 70px 20px; max-width: 1100px; margin: 0 auto; }
.csd-section-title { text-align: center; margin-bottom: 48px; }
.csd-section-title h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900; color: var(--text); letter-spacing: -.02em; margin: 0 0 10px;
}
.csd-section-title p { font-size: 1rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ── FEATURES MODULE GRID ── */
.csd-modules-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.csd-module-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 22px 18px;
  text-align: center; transition: all .2s;
}
.csd-module-card:hover { border-color: var(--brand); box-shadow: 0 8px 24px rgba(20,184,166,.1); transform: translateY(-3px); }
.csd-module-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff;
}
.csd-module-card h3 { font-size: 14px; font-weight: 800; color: var(--text); margin: 0 0 5px; }
.csd-module-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── PRICING CARDS ── */
.csd-pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.csd-price-card {
  background: #fff; border: 2px solid var(--border); border-radius: 20px;
  padding: 32px 28px; position: relative; overflow: hidden; transition: all .2s;
}
.csd-price-card:hover { border-color: var(--brand); box-shadow: 0 16px 40px rgba(20,184,166,.1); }
.csd-price-card.popular { border-color: var(--brand); }
.csd-price-popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--brand); color: #fff;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 6px 16px; border-radius: 0 18px 0 12px;
}
.csd-price-label { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 8px; }
.csd-price-name { font-size: 1.3rem; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.csd-price-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; min-height: 36px; line-height: 1.5; }
.csd-price-amount { margin-bottom: 8px; }
.csd-price-amount .amt { font-size: 2.4rem; font-weight: 900; color: var(--text); line-height: 1; }
.csd-price-amount .sym { font-size: 1rem; font-weight: 600; color: var(--muted); vertical-align: top; margin-top: 6px; display: inline-block; }
.csd-price-amount .unit { font-size: 14px; color: var(--muted); display: block; margin-top: 2px; }
.csd-price-includes { font-size: 14px; color: var(--green); font-weight: 700; margin-bottom: 20px; }
.csd-price-features { list-style: none; padding: 0; margin: 0 0 24px; }
.csd-price-features li {
  font-size: 14px; color: #374151; padding: 7px 0;
  border-bottom: 1px solid var(--bg);
  display: flex; align-items: flex-start; gap: 8px;
}
.csd-price-features li .chk { color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.csd-price-btn {
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; padding: 13px; border-radius: 12px;
  font-size: 14px; font-weight: 800; transition: all .2s;
}
.csd-price-btn:hover { color: #fff; text-decoration: none; opacity: .9; transform: translateY(-1px); }
.csd-price-card.popular .csd-price-btn { background: linear-gradient(135deg, #14b8a6, #0d9488); box-shadow: 0 4px 16px rgba(20,184,166,.35); }

/* ── PROCESS ── */
.csd-process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
}
.csd-step {
  text-align: center; padding: 28px 20px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 16px; position: relative;
}
.csd-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff; font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.csd-step h3 { font-size: 14px; font-weight: 800; color: var(--text); margin: 0 0 6px; }
.csd-step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── TECH STACK ── */
.csd-tech-strip {
  background: linear-gradient(135deg, #042f2e, #134e4a);
  border-radius: 20px; padding: 40px; text-align: center;
  max-width: 1100px; margin: 0 auto 60px;
}
.csd-tech-strip h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0 0 6px; }
.csd-tech-strip p { font-size: 14px; color: rgba(255,255,255,.5); margin: 0 0 24px; }
.csd-tech-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.csd-tech-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85); padding: 8px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
}

/* ── WHY US ── */
.csd-why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.csd-why-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 24px;
  display: flex; gap: 14px;
}
.csd-why-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff;
}
.csd-why-card h3 { font-size: 14px; font-weight: 800; color: var(--text); margin: 0 0 5px; }
.csd-why-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── FAQ ── */
.csd-faq-list { max-width: 820px; margin: 0 auto; }
.csd-faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.csd-faq-q {
  padding: 18px 22px; font-size: 14px; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none;
}
.csd-faq-q:hover { background: var(--bg); }
.csd-faq-q .arrow { color: var(--green); transition: transform .2s; font-size: 14px; flex-shrink: 0; }
.csd-faq-q.open .arrow { transform: rotate(180deg); }
.csd-faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.csd-faq-a.show { display: block; }

/* ── CTA ── */
.csd-cta-section {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #10b981 100%);
  border-radius: 24px; padding: 60px 40px; text-align: center;
  max-width: 1100px; margin: 0 auto 80px; position: relative; overflow: hidden;
}
.csd-cta-section::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; background: rgba(255,255,255,.06); border-radius: 50%;
}
.csd-cta-section h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; color: #fff; margin: 0 0 12px; letter-spacing: -.02em; }
.csd-cta-section p { font-size: 15px; color: rgba(255,255,255,.7); margin: 0 0 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.csd-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.csd-cta-primary {
  background: #fff; color: #065f46; text-decoration: none;
  padding: 15px 30px; border-radius: 12px; font-weight: 800; font-size: 15px;
  transition: all .2s; box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.csd-cta-primary:hover { color: #064e3b; text-decoration: none; transform: translateY(-2px); }
.csd-cta-sec {
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 15px 28px; border-radius: 12px; font-weight: 700; font-size: 14px; transition: all .2s;
}
.csd-cta-sec:hover { background: rgba(255,255,255,.22); color: #fff; text-decoration: none; }

/* ── ORDER / QUOTE REQUEST FORM ── */
.csd-order-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #064e3b 100%);
  padding: 70px 20px;
}
.csd-order-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 860px) { .csd-order-grid { grid-template-columns: 1fr; } }
.csd-order-card {
  background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.csd-field { margin-bottom: 16px; }
.csd-field label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.csd-field input, .csd-field select, .csd-field textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--text);
}
.csd-field input:focus, .csd-field select:focus, .csd-field textarea:focus { outline: none; border-color: var(--brand); }
.csd-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .csd-field-row { grid-template-columns: 1fr; } }
.csd-order-btn {
  width: 100%; text-align: center; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 800;
}
.csd-order-btn:hover { opacity: .9; }

@media (max-width: 700px) {
  .csd-tech-strip { padding: 28px 20px; }
  .csd-cta-section { padding: 40px 24px; }
}

