/* ==========================================================================
   Pathway IT — website-development.css
   Banner hero, dark logo strip, light "what's included" grid, dark process
   band with a stats panel, dark tech tiles, FAQ and a closing CTA.
   ========================================================================== */

.wd-section { padding-block: clamp(3.5rem, 7vw, 5.5rem); background: #FAFBFE; }
.wd-cta-wrap { padding-block: 0 clamp(3.5rem, 7vw, 5.5rem); background: #FAFBFE; }

/* The two dark bands read as one continuous panel, split only by a hairline. */
.wd-dark { padding-block: clamp(3.5rem, 7vw, 5rem); background: #0A0F26; }
.wd-dark--alt { background: #080D20; border-top: 1px solid rgba(255, 255, 255, .06); }

/* Icon slots are filled with an SVG by website-development.js. */
span[data-icon]:not([class]) { display: inline-flex; flex: none; vertical-align: middle; }
span[data-icon]:not([class]) svg { width: 1em; height: 1em; }

/* -------------------------------------------------------------------------- */
/* Hero banner                                                                */
/* -------------------------------------------------------------------------- */
.wd-hero { background: #04060F; padding-top: var(--header-h); }
.wd-hero-media { position: relative; max-width: 1600px; margin-inline: auto; }
.wd-banner { display: block; width: 100%; height: auto; }

/* Transparent overlays sitting exactly on the "Enquire Now" button baked into
   each banner. Percentages are measured from the artwork. */
.wd-hotspot {
  position: absolute; border: 0; background: transparent; padding: 0;
  cursor: pointer; border-radius: var(--r-pill);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.wd-hotspot:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(124, 58, 237, .45); }
.wd-hotspot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.wd-hotspot--desktop { left: 5.05%; top: 62.55%; width: 15.65%; height: 9.39%; }
.wd-hotspot--mobile  { left: 6.84%; top: 38.40%; width: 42.30%; height: 5.10%; display: none; }

@media (max-width: 760px) {
  .wd-hotspot--desktop { display: none; }
  .wd-hotspot--mobile  { display: block; }
}

/* -------------------------------------------------------------------------- */
/* Trusted-by logo strip                                                      */
/* -------------------------------------------------------------------------- */
.wd-logos { background: #080D20; padding-block: 2rem 2.4rem; }
.wd-logos-label {
  text-align: center; font-family: var(--font-mono);
  font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: #6E779B; margin-bottom: 1.5rem;
}
.wd-logo-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.4rem);
}
.wd-logo-row li {
  font-size: clamp(.95rem, 1.6vw, 1.15rem); font-weight: 600; letter-spacing: -.01em;
  color: #8A93B4; opacity: .85;
  transition: color var(--t) var(--ease), opacity var(--t) var(--ease);
}
.wd-logo-row li:hover { color: #E6E9F5; opacity: 1; }

/* Six wordmarks wrap 4+2 on phones; a grid keeps them balanced 3+3. */
@media (max-width: 640px) {
  .wd-logo-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem .8rem; justify-items: center;
  }
}

/* -------------------------------------------------------------------------- */
/* Section headings                                                           */
/* -------------------------------------------------------------------------- */
.wd-head { text-align: center; max-width: 680px; margin: 0 auto clamp(2.2rem, 4.5vw, 3.2rem); }
.wd-head h2 {
  margin-top: 1rem;
  font-size: clamp(1.4rem, 2.7vw, 1.95rem);
  line-height: 1.3; letter-spacing: -.02em; color: var(--slate-900);
}
.wd-head > p { margin-top: .9rem; font-size: .88rem; line-height: 1.65; color: var(--slate-500); }

.wd-head--dark h2 { color: #fff; }
.wd-head--dark > p { color: #98A2C0; }
.eyebrow--dark {
  background: rgba(124, 58, 237, .16); border-color: rgba(139, 92, 246, .32); color: #C4B5FD;
}
.wd-head--dark .wd-logos-label { margin-bottom: 0; }

/* -------------------------------------------------------------------------- */
/* What's included (3 x 2)                                                    */
/* -------------------------------------------------------------------------- */
.wd-incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.wd-incl {
  position: relative;
  background: var(--paper); border: 1px solid #E7EAF4; border-radius: 14px;
  padding: 1.5rem 1.4rem 1.7rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.wd-incl:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(20, 22, 70, .09); border-color: #CFD5F5; }
.wd-incl-ico {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 11px; background: var(--indigo-50); color: var(--indigo); margin-bottom: 1rem;
}
.wd-incl-ico svg { width: 19px; height: 19px; }
/* Small ring in the top-right corner, echoing the reference cards. */
.wd-incl-dot {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid #DDE1F2;
}
.wd-incl h3 { font-size: .97rem; margin-bottom: .5rem; color: var(--slate-900); }
.wd-incl p { font-size: .83rem; line-height: 1.6; color: var(--slate-500); }
/* Short accent rule closing each card. */
.wd-incl::after {
  content: ""; display: block; width: 26px; height: 2px; border-radius: 2px;
  background: var(--indigo); opacity: .5; margin-top: 1.1rem;
}

@media (max-width: 1000px) { .wd-incl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .wd-incl-grid { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- */
/* Process (5 steps on a dashed rail)                                         */
/* -------------------------------------------------------------------------- */
.wd-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  list-style: none; margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.wd-step { position: relative; text-align: center; padding-inline: .3rem; }
.wd-step-ico {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto .8rem;
  border-radius: 50%; color: #C4B5FD;
  background: #141A38; border: 1px solid rgba(139, 92, 246, .38);
  box-shadow: 0 0 0 5px rgba(124, 58, 237, .08);
}
.wd-step-ico svg { width: 19px; height: 19px; }
.wd-step:not(:last-child)::after {
  content: ""; position: absolute; top: 23px; height: 0;
  border-top: 1px dashed rgba(255, 255, 255, .17);
  left: calc(50% + 29px); right: calc(-50% + 29px);
}
.wd-step h3 { font-size: .87rem; margin-bottom: .4rem; color: #fff; }
.wd-step p { font-size: .76rem; line-height: 1.55; color: #8A93B4; }

@media (max-width: 900px) {
  .wd-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
  .wd-step:nth-child(3n)::after { display: none; }
}
@media (max-width: 560px) {
  .wd-steps { grid-template-columns: repeat(2, 1fr); }
  .wd-step::after { display: none; }
}

/* -------------------------------------------------------------------------- */
/* Stats panel                                                                */
/* -------------------------------------------------------------------------- */
.wd-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1rem;
  background: #101637; border: 1px solid rgba(255, 255, 255, .08); border-radius: 16px;
  padding: clamp(1.8rem, 3.6vw, 2.4rem) clamp(1.2rem, 3vw, 2rem);
  background-image: radial-gradient(120% 160% at 50% 0%, rgba(124, 58, 237, .14) 0%, transparent 62%);
}
.wd-stats li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.wd-stat-ico {
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: .8rem;
  border-radius: 50%; color: #C4B5FD;
  background: rgba(124, 58, 237, .16); border: 1px solid rgba(139, 92, 246, .3);
}
.wd-stat-ico svg { width: 15px; height: 15px; }
.wd-stats b {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem); font-weight: 700;
  letter-spacing: -.02em; color: #fff; line-height: 1;
}
.wd-stat-l { margin-top: .5rem; font-size: .76rem; color: #8A93B4; }
.wd-stat-tag {
  margin-top: .8rem; padding: .22rem .6rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .06em; color: #98A2C0;
}
.wd-stats li + li { border-left: 1px solid rgba(255, 255, 255, .07); }

@media (max-width: 760px) {
  .wd-stats { grid-template-columns: repeat(2, 1fr); }
  .wd-stats li + li { border-left: 0; }
}
@media (max-width: 340px) { .wd-stats { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------------------- */
/* Tech tiles                                                                 */
/* -------------------------------------------------------------------------- */
.wd-tech { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.wd-tech li {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  background: #101637; border: 1px solid rgba(255, 255, 255, .08); border-radius: 14px;
  padding: 1.3rem .8rem;
  font-size: .78rem; font-weight: 600; color: #C8CEE4; text-align: center;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.wd-tech li:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, .4); }
/* A light plate keeps dark brand marks (Next.js, Vercel) legible on the tile. */
.wd-tech-mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border-radius: 11px; background: rgba(255, 255, 255, .93);
}
.wd-tech-mark svg { width: 24px; height: 24px; display: block; }

@media (max-width: 900px) { .wd-tech { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .wd-tech { grid-template-columns: repeat(2, 1fr); } }

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.wd-faq { max-width: 780px; margin-inline: auto; }

/* -------------------------------------------------------------------------- */
/* Closing CTA band                                                           */
/* -------------------------------------------------------------------------- */
.wd-cta {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(1.6rem, 4vw, 3rem);
  background: #0A0F26; border-radius: 18px;
  padding: clamp(1.8rem, 3.6vw, 2.6rem) clamp(1.6rem, 3.6vw, 2.8rem);
  background-image: radial-gradient(110% 150% at 15% 0%, rgba(124, 58, 237, .18) 0%, transparent 60%);
}
.wd-cta-copy h2 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.35; color: #fff; letter-spacing: -.01em; }
.wd-cta-copy p { margin-top: .6rem; font-size: .86rem; line-height: 1.6; color: #98A2C0; }

.wd-cta-action { flex: none; }
.wd-cta-form { display: flex; gap: .7rem; }
.wd-cta-form input {
  width: clamp(200px, 22vw, 260px);
  background: #131A36; border: 1px solid #262F55; color: #fff;
  border-radius: 10px; padding: .8rem 1rem; font-size: .88rem;
}
.wd-cta-form input::placeholder { color: #6E779B; }
.wd-cta-form input:focus-visible { outline: 2px solid #8B5CF6; outline-offset: 1px; }
.wd-cta-btn {
  background: var(--indigo); color: #fff; border-radius: 10px;
  padding: .8rem 1.3rem; font-size: .88rem; white-space: nowrap; gap: .45rem;
}
.wd-cta-btn:hover { background: #4338CA; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(79, 70, 229, .38); }

.wd-cta-points { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1rem; }
.wd-cta-points li { display: flex; align-items: center; gap: .4rem; font-size: .76rem; color: #98A2C0; }
.wd-cta-points svg { width: 13px; height: 13px; color: #A78BFA; flex: none; }

@media (max-width: 940px) {
  .wd-cta { flex-direction: column; align-items: flex-start; }
  .wd-cta-copy h2 br { display: none; }
  .wd-cta-action { width: 100%; }
  .wd-cta-form input { width: 100%; flex: 1; }
}
@media (max-width: 520px) {
  .wd-cta-form { flex-direction: column; }
  .wd-cta-btn { justify-content: center; }
}
