/* ══════════════════════════════════════════════════════════════════
   NELUXTECH — services.css
   Shared stylesheet for all service detail pages
   ══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --navy:       #0d1f5c;
  --navy-dk:    #081340;
  --navy-lt:    #1a3280;
  --orange:     #f97316;
  --orange-lt:  #fb923c;
  --orange-dk:  #e8750a;
  --sky:        #0d1f5c;
  --sky-lt:     #0d1f5c;
  --emerald:    #34d399;
  --white:      #ffffff;
  --bg:         #f7f9ff;
  --bg-alt:     #edf1fb;
  --border:     #e2e8f4;
  --text:       #111827;
  --text-lt:    #64748b;
  --text-xs:    #94a3b8;
  --accent:     var(--orange);
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-xl:       28px;
  --sh-sm:      0 2px 10px rgba(13,31,92,.07);
  --sh-md:      0 8px 32px rgba(13,31,92,.12);
  --sh-lg:      0 24px 72px rgba(13,31,92,.16);
  --ease:       cubic-bezier(.4,0,.2,1);
  --max-w:      1600px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--orange); }

.section-sub {
  font-size: .95rem;
  color: var(--text-lt);
  line-height: 1.8;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-accent {
  background: linear-gradient(135deg, var(--orange-dk), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(249,115,22,.38);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.5);
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
}
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--navy);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-anim][data-d="1"] { transition-delay: .08s; }
[data-anim][data-d="2"] { transition-delay: .16s; }
[data-anim][data-d="3"] { transition-delay: .24s; }
[data-anim][data-d="4"] { transition-delay: .32s; }
[data-anim].in          { opacity: 1; transform: translateY(0); }

/* Fallback: if JS never runs or anim-ready class is missing, show everything */
body:not(.anim-ready) [data-anim] {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.svc-hero {
  position: relative;
  background:
    linear-gradient(155deg, rgba(4,10,36,.94) 0%, rgba(10,20,62,.88) 50%, rgba(4,12,40,.95) 100%),
    url('https://images.pexels.com/photos/34088/pexels-photo.jpg') center/cover no-repeat;
  padding: 50px 0 72px;
  overflow: hidden;
}

/* Animated grain overlay */
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); */
  pointer-events: none;
  z-index: 0;
}

/* Bottom accent line */
.svc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 35%, var(--sky) 65%, transparent 100%);
}

.svc-hero .container { position: relative; z-index: 1; }

.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  min-height: 480px;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--orange-lt); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb .cur { color: var(--orange-lt); font-weight: 700; }

/* ── Badge ── */
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.14);
  border: 1px solid rgba(249,115,22,.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 20px;
  animation: heroFadeUp .5s var(--ease) both;
}

/* ── Hero headline ── */
.svc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 18px;
  animation: heroFadeUp .55s .08s var(--ease) both;
}
.svc-hero h1 span {
  background: linear-gradient(125deg, var(--sky-lt), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-hero-desc {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,255,255,.62);
  max-width: 520px;
  margin-bottom: 28px;
  animation: heroFadeUp .55s .16s var(--ease) both;
}

/* ── Hero CTA row ── */
.svc-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: heroFadeUp .55s .22s var(--ease) both;
}

/* ── Tags ── */
.svc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: heroFadeUp .55s .3s var(--ease) both;
}
.svc-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  font-size: .73rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  transition: all .2s;
  cursor: default;
}
.svc-tag:hover {
  border-color: rgba(249,115,22,.5);
  color: var(--orange-lt);
  background: rgba(249,115,22,.1);
}

/* ── Hero visual container ── */
.svc-hero-visual {
  animation: heroFadeUp .7s .12s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════════
   SECTION WRAPPER
   ════════════════════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}

/* ════════════════════════════════════════════════════════════════════
   OFFER GRID
   ════════════════════════════════════════════════════════════════════ */
.offer-section {
  background: var(--white);
}
.offer-section .container > [data-anim] {
  margin-bottom: 52px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  overflow: hidden;
  transition: all .28s var(--ease);
}
.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,92,.0) 0%, rgba(249,115,22,.04) 100%);
  opacity: 0;
  transition: opacity .28s;
}
.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,.35);
  box-shadow: var(--sh-md);
  background: var(--white);
}
.offer-card:hover::after { opacity: 1; }

.offer-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.22);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--orange-dk);
  margin-bottom: 20px;
  transition: transform .28s var(--ease), background .28s;
  position: relative;
  z-index: 1;
}
.offer-card:hover .offer-icon {
  transform: scale(1.08) rotate(-5deg);
  background: rgba(249,115,22,.18);
}

.offer-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.offer-card p {
  font-size: .87rem;
  color: var(--text-lt);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════════
   PROCESS STEPS
   ════════════════════════════════════════════════════════════════════ */
.process-section {
  background:
    linear-gradient(160deg, #f0f4fc 0%, #f7f9fd 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky), var(--orange));
}

.process-head {
  text-align: center;
  margin-bottom: 56px;
}
.process-head .eyebrow { justify-content: center; }
.process-head .eyebrow::before { display: none; }
.process-head .section-sub { text-align: center; margin-inline: auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  z-index: 0;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 28px;
  z-index: 1;
}

.ps-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-dk), var(--orange));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 18px rgba(249,115,22,.38);
  transition: transform .28s var(--ease), box-shadow .28s;
}
.process-step:hover .ps-num {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(249,115,22,.5);
}

.process-step h4 {
  font-size: .97rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.process-step p {
  font-size: .84rem;
  color: var(--text-lt);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════════
   QUOTE / PRICING
   ════════════════════════════════════════════════════════════════════ */
.quote-section { background: var(--white); }
.quote-section .container > [data-anim] { margin-bottom: 52px; }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.quote-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all .28s var(--ease);
}
.quote-card:not(.featured):hover {
  border-color: rgba(59,130,246,.4);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.quote-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--sh-lg);
  transform: scale(1.03);
}
.quote-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 32px 80px rgba(13,31,92,.22);
}
.quote-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange-lt));
}

.quote-tier {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 16px;
  width: fit-content;
}
.featured .quote-tier {
  color: var(--orange-lt);
  background: rgba(249,115,22,.18);
  border-color: rgba(249,115,22,.4);
}

.quote-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.featured .quote-name { color: var(--white); }

.quote-desc {
  font-size: .87rem;
  color: var(--text-lt);
  line-height: 1.72;
  flex-grow: 0;
}
.featured .quote-desc { color: rgba(255,255,255,.58); }

.quote-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
}
.featured .quote-divider { background: rgba(255,255,255,.12); }

.quote-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-grow: 1;
  margin-bottom: 28px;
}
.quote-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--text);
}
.featured .quote-features li { color: rgba(255,255,255,.82); }
.quote-features li i {
  color: var(--orange);
  font-size: .8rem;
  flex-shrink: 0;
}

.quote-card .btn { align-self: flex-start; }
.quote-card.featured .btn-accent {
  background: linear-gradient(135deg, var(--orange-dk), var(--orange-lt));
  width: 100%;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-section .container > [data-anim] { margin-bottom: 44px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s;
}
.faq-item:hover { border-color: rgba(59,130,246,.3); box-shadow: var(--sh-sm); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}
.faq-q span {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  flex: 1;
}
.faq-q i {
  color: var(--text-xs);
  font-size: .78rem;
  flex-shrink: 0;
  transition: transform .28s var(--ease), color .22s;
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-item.open .faq-q { border-bottom: 1px solid var(--border); }
.faq-item.open .faq-q span { color: var(--orange-dk); }

.faq-a {
  font-size: .87rem;
  color: var(--text-lt);
  line-height: 1.78;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s var(--ease), padding .28s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 18px 22px;
}

/* ════════════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(8,19,64,.94) 0%, rgba(13,31,92,.96) 100%),
    url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--sky), transparent);
}

.cta-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  border-radius: var(--r-xl);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-box h2 em { font-style: normal; color: var(--orange); }
.cta-box p {
  font-size: .93rem;
  color: rgba(255,255,255,.55);
  line-height: 1.72;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — AI CHATBOT  (ai-ml.php)
   ════════════════════════════════════════════════════════════════════ */
.ai-visual {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.ai-chat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.ai-msg.user { flex-direction: row-reverse; }

.ai-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ai-avatar.human {
  background: linear-gradient(135deg, var(--sky), #818cf8);
  color: var(--white);
}
.ai-avatar.bot {
  background: linear-gradient(135deg, var(--orange-dk), var(--orange));
  color: var(--white);
  font-size: .72rem;
}

.ai-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .78rem;
  line-height: 1.55;
}
.ai-msg.user .ai-bubble {
  background: rgba(59,130,246,.25);
  border: 1px solid rgba(59,130,246,.3);
  color: rgba(255,255,255,.9);
  border-bottom-right-radius: 4px;
}
.ai-msg.bot .ai-bubble {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
  border-bottom-left-radius: 4px;
}

.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}
.ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  animation: aiDot 1.2s ease-in-out infinite;
}
.ai-dot:nth-child(2) { animation-delay: .2s; }
.ai-dot:nth-child(3) { animation-delay: .4s; }
@keyframes aiDot { 0%,80%,100%{transform:scale(.8);opacity:.4} 40%{transform:scale(1.2);opacity:1} }

.ai-model-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.ai-model {
  padding: 12px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s;
}
.ai-model:last-child { border-right: 0; }
.ai-model:hover { background: rgba(255,255,255,.06); }
.ai-model-name {
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}
.ai-model-sub {
  font-size: .66rem;
  color: rgba(255,255,255,.38);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — API INTEGRATIONS  (api-integrations.php)
   ════════════════════════════════════════════════════════════════════ */
.api-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.api-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .22s;
}
.api-node:last-child { border-bottom: 0; }
.api-node:hover { background: rgba(255,255,255,.06); }

.api-node-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.25);
  display: grid;
  place-items: center;
  color: var(--orange-lt);
  font-size: .95rem;
  flex-shrink: 0;
}

.api-node-name {
  font-size: .85rem;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}
.api-node-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  margin-top: 2px;
}

.api-node-badge {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.api-node-badge.live {
  background: rgba(52,211,153,.15);
  border: 1px solid rgba(52,211,153,.3);
  color: var(--emerald);
}
.api-node-badge.ready {
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: var(--sky-lt);
}

.api-arrow {
  text-align: center;
  color: rgba(249,115,22,.5);
  font-size: .8rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — BRANDING  (branding.php)
   ════════════════════════════════════════════════════════════════════ */
.brand-visual {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
}
.bla-logo {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-lt), var(--sky));
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  box-shadow: 0 8px 24px rgba(59,130,246,.35);
}
.bla-name {
  font-size: .9rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  letter-spacing: -.02em;
}
.bla-tag {
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .06em;
}

.brand-palette {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bp-swatch {
  flex: 1;
  height: 32px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s;
}
.bp-swatch:hover { transform: scaleY(1.25); }

.brand-type {
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
}
.bt-h {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.88);
  letter-spacing: -.04em;
}
.bt-s {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — CODE EDITOR  (custom-software.php)
   ════════════════════════════════════════════════════════════════════ */
.code-visual {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.code-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.code-dot.r { background: #ff5f57; }
.code-dot.y { background: #febc2e; }
.code-dot.g { background: #28c840; }
.code-file {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-left: 4px;
}

.code-body {
  padding: 18px 4px 18px 0;
}
.cl {
  display: flex;
  align-items: center;
  padding: 2px 16px;
  font-size: .78rem;
  line-height: 1.9;
  transition: background .15s;
}
.cl:hover { background: rgba(255,255,255,.04); }
.ln {
  color: rgba(255,255,255,.2);
  width: 24px;
  text-align: right;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: .7rem;
}
.kw { color: #c792ea; }
.fn { color: #82aaff; }
.st { color: #c3e88d; }
.cm { color: rgba(255,255,255,.28); font-style: italic; }
.tx { color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — SEO DASHBOARD  (seo.php)
   ════════════════════════════════════════════════════════════════════ */
.seo-visual {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.seo-score {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
}
.seo-score-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.06em;
}
.seo-score-label {
  font-size: .88rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}
.seo-score-sub {
  font-size: .7rem;
  color: rgba(255,255,255,.38);
  margin-top: 3px;
}

.seo-bar-row { display: flex; flex-direction: column; gap: 10px; }
.seo-bar-item { display: flex; align-items: center; gap: 12px; }
.seo-bar-label {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  width: 72px;
  flex-shrink: 0;
}
.seo-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.seo-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange-lt));
  animation: barFill 1.2s var(--ease) both;
}
@keyframes barFill { from { width: 0 !important; } }

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.seo-kw {
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.4);
}
.seo-kw.ranked {
  border-color: rgba(52,211,153,.35);
  background: rgba(52,211,153,.1);
  color: var(--emerald);
}

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — DESIGN CANVAS  (ui-ux.php)
   ════════════════════════════════════════════════════════════════════ */
.design-canvas {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.canvas-label {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.canvas-tools {
  display: flex;
  gap: 4px;
}
.canvas-tool {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .18s;
}
.canvas-tool:hover, .canvas-tool.active {
  background: rgba(249,115,22,.2);
  color: var(--orange-lt);
}

.canvas-frame {
  padding: 16px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cf-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
}
.cf-logo { width: 20px; height: 20px; border-radius: 4px; background: linear-gradient(135deg, var(--navy-lt), var(--sky)); }
.cf-links { display: flex; gap: 10px; margin-left: auto; }
.cf-links span { display: block; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); }
.cf-links span:nth-child(1) { width: 22px; }
.cf-links span:nth-child(2) { width: 26px; }
.cf-links span:nth-child(3) { width: 20px; }
.cf-btn { width: 36px; height: 14px; border-radius: 50px; background: linear-gradient(90deg, var(--orange-dk), var(--orange)); }

.cf-hero { padding: 14px 10px; margin-bottom: 12px; }
.cf-h { height: 8px; border-radius: 2px; background: rgba(255,255,255,.2); margin-bottom: 8px; }
.cf-h.w-70 { width: 70%; }
.cf-h.w-50 { width: 50%; }

.cf-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.cf-card { height: 40px; border-radius: var(--r-sm); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); }

.canvas-palette {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
}
.cp-swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  transition: transform .18s;
}
.cp-swatch:hover { transform: scale(1.3); }

/* ════════════════════════════════════════════════════════════════════
   HERO VISUAL — BROWSER  (web-design.php)
   ════════════════════════════════════════════════════════════════════ */
.browser-mockup {
  background: #ffffff08;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.browser-dots span:nth-child(1) { background: rgba(255,95,87,.7); }
.browser-dots span:nth-child(2) { background: rgba(254,188,46,.7); }
.browser-dots span:nth-child(3) { background: rgba(40,200,64,.7); }

.browser-url {
  flex: 1;
  height: 22px;
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  font-size: .68rem;
  color: rgba(255,255,255,.38);
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.browser-content {
  padding: 22px 20px;
}
.bc-line {
  height: 10px;
  border-radius: 2px;
  background: rgba(255,255,255,.15);
  margin-bottom: 10px;
}
.bc-line.w-80 { width: 80%; }
.bc-line.w-60 { width: 60%; }
.bc-line.w-40 { width: 40%; }

.bc-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.bc-card {
  height: 56px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

/* ════════════════════════════════════════════════════════════════════
   PER-PAGE ACCENT TINTS (hero badge / icon colour shifts)
   ════════════════════════════════════════════════════════════════════ */
.page-ai .svc-hero,
.page-software .svc-hero {
  background-image:
    linear-gradient(155deg, rgba(4,10,36,.94) 0%, rgba(10,20,62,.88) 50%, rgba(4,12,40,.95) 100%),
    url('https://images.pexels.com/photos/34088/pexels-photo.jpg');
}
.page-seo .svc-hero,
.page-uiux .svc-hero {
  background-image:
    linear-gradient(155deg, rgba(4,20,36,.96) 0%, rgba(6,40,62,.88) 50%, rgba(4,12,40,.96) 100%),
    url('https://images.pexels.com/photos/34088/pexels-photo.jpg');
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: unset;
  }
  .svc-hero { padding: 48px 0 60px; }
  .svc-hero-visual { max-width: 480px; }

  .offer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .quote-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .quote-card.featured { transform: scale(1); }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 40px;
  }
  .cta-actions { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 640px
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .svc-hero { padding: 36px 0 52px; }
  .svc-hero h1 { font-size: 1.8rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 64px 0; }
  .cta-box { padding: 32px 24px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .svc-hero-actions { flex-direction: column; align-items: flex-start; }
  .svc-hero-actions .btn { width: 100%; justify-content: center; }
  .ai-model-row { grid-template-columns: repeat(3,1fr); }
  .quote-grid { max-width: 100%; }
  .process-head .section-sub { text-align: left; margin: 0; }
}

/* ════════════════════════════════════════════════════════════════════
   FAQ ACCORDION SCRIPT — inline init
   ════════════════════════════════════════════════════════════════════ */