/* ═══════════════════════════════════════════════
   DS SOFTECH — Agency Site Shared Styles
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg0:     #020812;
  --bg1:     #070d1a;
  --bg2:     #0c1424;
  --bg3:     #111d30;
  --bg4:     #172035;
  --bg5:     #1e2a40;
  --bg6:     #243049;
  --border:  rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);
  --border3: rgba(255,255,255,.18);
  --orange:  #F97316;
  --orange2: #fb923c;
  --orange3: #fdba74;
  --blue:    #3b82f6;
  --blue2:   #60a5fa;
  --green:   #22c55e;
  --purple:  #a855f7;
  --yellow:  #facc15;
  --pink:    #ec4899;
  --white:   #ffffff;
  --t100:    rgba(255,255,255,1);
  --t90:     rgba(255,255,255,.9);
  --t80:     rgba(255,255,255,.8);
  --t70:     rgba(255,255,255,.7);
  --t60:     rgba(255,255,255,.6);
  --t50:     rgba(255,255,255,.5);
  --t40:     rgba(255,255,255,.4);
  --t30:     rgba(255,255,255,.3);
  --t20:     rgba(255,255,255,.2);
  --t10:     rgba(255,255,255,.1);
  --t06:     rgba(255,255,255,.06);
  --t04:     rgba(255,255,255,.04);
  --font-h: 'Space Grotesk', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg1);
  color: var(--t80);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.1; letter-spacing: -.02em; }

::selection { background: rgba(249,115,22,.35); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg0); }
::-webkit-scrollbar-thumb { background: var(--bg5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Containers ── */
.wrap     { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-sm  { max-width:  860px; margin: 0 auto; padding: 0 28px; }
.wrap-xs  { max-width:  680px; margin: 0 auto; padding: 0 28px; }

/* ── Label ── */
.lbl {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.lbl-blue { color: var(--blue2); }
.lbl-green { color: #4ade80; }

/* ── Buttons ── */
.btn-orange,
.btn-ghost,
.btn-ghost-sm,
.btn-blue,
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-weight: 700;
  border-radius: 12px; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
  white-space: nowrap; border: none;
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; font-size: 15px; padding: 14px 30px;
  box-shadow: 0 4px 24px rgba(249,115,22,.3);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,.45); }

.btn-ghost {
  border: 1.5px solid var(--border2); color: var(--t80);
  font-weight: 600; font-size: 15px; padding: 14px 30px;
  background: var(--t04);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(249,115,22,.06); }

.btn-ghost-sm {
  border: 1.5px solid var(--border); color: var(--t60);
  font-size: 13px; padding: 10px 18px; font-weight: 600;
}
.btn-ghost-sm:hover { border-color: var(--orange2); color: var(--orange2); }

.btn-blue {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff; font-size: 15px; padding: 14px 30px;
  box-shadow: 0 4px 24px rgba(59,130,246,.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,.45); }

.btn-white {
  background: #fff; color: var(--bg1); font-size: 15px; padding: 14px 30px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.2); }

/* ── Cards ── */
.card {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; transition: all .25s;
}
.card:hover { border-color: rgba(249,115,22,.3); box-shadow: 0 8px 32px rgba(0,0,0,.4); transform: translateY(-3px); }

/* ── Grids ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.g6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }

/* ── Section header ── */
.sh   { margin-bottom: 52px; }
.sh.c { text-align: center; }
.sh h2{ font-size: clamp(30px,3.5vw,46px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.sh p { font-size: 16px; color: var(--t50); max-width: 600px; line-height: 1.75; }
.sh.c p { margin: 0 auto; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.25);
  border-radius: 999px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; color: var(--orange2);
}
.badge.blue { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.25); color: var(--blue2); }
.badge.green { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.25); color: #4ade80; }

.dot { width:7px; height:7px; background:var(--green); border-radius:50%; animation: pulse 2s infinite; }

/* ── Divider ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border2), transparent); }

/* ── Animations ── */
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(2); opacity: 0; }
}
@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.05); }
  66%     { transform: translate(-30px,40px) scale(.95); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.animate-blob { animation: blob-drift 14s ease-in-out infinite; }
.animate-fadeup { animation: fadeup .6s ease-out both; }

/* ── Premium Gradient Backgrounds ── */
.bg-midnight {
  background: var(--bg2);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%,  rgba(59,130,246,.10),  transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 100%,rgba(249,115,22,.10),  transparent 55%),
    linear-gradient(135deg, #0b1224 0%, #111c36 45%, #1a2747 100%);
}
.bg-aurora {
  background: var(--bg2);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(249,115,22,.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.22), transparent 45%),
    linear-gradient(160deg, #050a18 0%, #0f1a33 60%, #050a18 100%);
}
.bg-orange-glow {
  background: var(--bg2);
  background-image:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(249,115,22,.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(59,130,246,.18), transparent 60%),
    linear-gradient(140deg, #0d152b 0%, #15213d 50%, #0d152b 100%);
}

/* Subtle grid overlay */
.grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* Glow blobs */
.blob-orange { background: radial-gradient(circle, rgba(249,115,22,.45), transparent 70%); filter: blur(60px); }
.blob-blue   { background: radial-gradient(circle, rgba(59,130,246,.45), transparent 70%); filter: blur(60px); }
.blob-purple { background: radial-gradient(circle, rgba(168,85,247,.40), transparent 70%); filter: blur(60px); }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,13,26,.92); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
/* ── Logo Mark (icon box) ── */
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(150deg, #f97316 0%, #c2410c 100%);
  box-shadow: 0 3px 18px rgba(249,115,22,0.32), 0 0 0 1px rgba(249,115,22,0.22), inset 0 1px 0 rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-mark::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 52%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
  pointer-events: none;
}
.logo-mark-icon {
  font-family: var(--font-h); font-weight: 900; font-size: 17px; letter-spacing: -0.5px;
  color: #fff; line-height: 1; position: relative; z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
/* ── Logo Text Block ── */
.logo-text-block { display: flex; flex-direction: column; gap: 3px; }
.logo-name { font-family: var(--font-h); font-weight: 800; font-size: 17px; color: var(--white); line-height: 1.1; }
.logo-name span { color: var(--orange); }
.logo-tagline {
  font-size: 8px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); line-height: 1;
  white-space: nowrap;
}
/* ── Footer Logo ── */
.footer-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
@media (max-width: 480px) { .logo-tagline { display: none; } }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--t60); font-size: 14px; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -22px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after { content: ' ▾'; font-size: 9px; opacity: .5; }
.nav-sub {
  position: absolute; top: 100%; left: -20px; padding-top: 22px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.nav-sub-in {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 14px; padding: 14px; min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  display: grid; gap: 4px;
}
.nav-sub-in a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; color: var(--t70);
}
.nav-sub-in a:hover { background: var(--t06); color: var(--orange2); }
.has-sub:hover .nav-sub { opacity: 1; pointer-events: auto; }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; cursor: pointer; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer.site-footer { background: var(--bg0); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-desc { font-size: 13px; color: var(--t40); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-family: var(--font-h); font-size: 11px; font-weight: 700; color: var(--t60); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--t40); font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--t30); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--t30); font-size: 12px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-loc {
  background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.15);
  border-radius: 12px; padding: 14px 16px; margin-top: 20px;
}
.footer-loc div { font-size: 12px; color: var(--t40); margin-bottom: 4px; }
.footer-loc .avail { color: var(--green); font-weight: 700; }
.social-links { display: flex; gap: 14px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg4); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--t60); transition: all .2s; }
.social-links a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero {
  position: relative; padding: 80px 0 64px;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(249,115,22,.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(59,130,246,.08), transparent 55%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2), var(--blue));
}
.page-hero h1 {
  font-size: clamp(36px,4.5vw,64px); font-weight: 800;
  color: var(--white); line-height: 1.05; margin-bottom: 18px;
}
.page-hero h1 .o { color: var(--orange); }
.page-hero p { font-size: 18px; color: var(--t60); max-width: 680px; line-height: 1.75; }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--t40); margin-bottom: 24px; }
.breadcrumb a { color: var(--t60); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span.sep { color: var(--t30); }

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; padding: 22px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-h); font-size: 16px; font-weight: 600; color: var(--t80);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--orange); }
.faq-plus { font-size: 22px; color: var(--t40); transition: transform .2s; flex-shrink: 0; }
.faq-item[open] .faq-plus { transform: rotate(45deg); color: var(--orange); }
.faq-a { padding: 0 0 22px; font-size: 15px; color: var(--t50); line-height: 1.8; max-width: 760px; }

/* ═══════════════════════════════
   FORM ELEMENTS
═══════════════════════════════ */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--t60); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.form-input,
.form-textarea,
.form-select {
  width: 100%; background: var(--bg4); border: 1.5px solid var(--border2);
  border-radius: 12px; padding: 14px 16px;
  font-family: var(--font-b); font-size: 14px; color: var(--white);
  transition: border-color .2s, background .2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--t30); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange); background: var(--bg5);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg4); color: var(--white); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--t60); }
.form-check input { margin-top: 3px; accent-color: var(--orange); }

/* ═══════════════════════════════
   MARQUEE (logo scroll)
═══════════════════════════════ */
.marquee-wrap {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 15px; font-weight: 700;
  color: var(--t50); transition: color .2s; white-space: nowrap;
}
.marquee-item:hover { color: var(--orange2); }
.marquee-item .ic { font-size: 22px; }

/* ═══════════════════════════════
   COMPARISON TABLE
═══════════════════════════════ */
.compare-grid { display: grid; grid-template-columns: 1fr 1.05fr 1fr; gap: 0; max-width: 1080px; margin: 0 auto; }
.compare-col {
  background: var(--bg4); border: 1px solid var(--border);
  padding: 36px 32px;
}
.compare-col:first-child { border-radius: 20px 0 0 20px; border-right: none; }
.compare-col:last-child  { border-radius: 0 20px 20px 0; border-left: none; }
.compare-col.featured {
  background: linear-gradient(180deg, rgba(249,115,22,.15), var(--bg5) 60%);
  border: 2px solid var(--orange);
  border-radius: 20px;
  position: relative; z-index: 2;
  margin: -16px -1px; padding: 50px 32px 40px;
  box-shadow: 0 20px 60px rgba(249,115,22,.25);
}
.compare-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase;
}
.compare-col h3 { font-size: 18px; color: var(--white); margin-bottom: 6px; }
.compare-col .sub { font-size: 12px; color: var(--t40); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.compare-col .price { font-family: var(--font-h); font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 24px; }
.compare-col .price small { font-size: 13px; color: var(--t40); font-weight: 500; }
.compare-list { list-style: none; display: grid; gap: 14px; margin-bottom: 24px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--t70); line-height: 1.55; }
.compare-list li .ic { flex-shrink: 0; font-size: 14px; margin-top: 2px; }

/* ═══════════════════════════════
   PROCESS STEPS (variant)
═══════════════════════════════ */
.p-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.p-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, var(--orange), var(--blue));
}
.p-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.p-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 20px; font-weight: 800;
  background: var(--bg4); border: 1px solid var(--border2); color: var(--t60);
  position: relative; z-index: 2; transition: all .25s;
}
.p-step:hover .p-num,
.p-step.active .p-num {
  background: var(--orange); color: var(--white); border-color: var(--orange);
  box-shadow: 0 0 24px rgba(249,115,22,.4); transform: scale(1.08);
}
.p-t { font-family: var(--font-h); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.p-d { font-size: 12px; color: var(--t40); line-height: 1.6; }

/* ═══════════════════════════════
   SERVICE CARD
═══════════════════════════════ */
.svc-card {
  display: block;
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
  transition: all .25s;
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--orange), var(--orange2));
  opacity: 0; transition: opacity .2s;
}
.svc-card:hover { border-color: rgba(249,115,22,.25); box-shadow: 0 12px 40px rgba(0,0,0,.5); transform: translateY(-4px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.svc-t { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; transition: color .2s; }
.svc-card:hover .svc-t { color: var(--orange2); }
.svc-d { font-size: 13px; color: var(--t50); line-height: 1.65; margin-bottom: 18px; }
.svc-ft { display: flex; align-items: center; justify-content: space-between; }
.svc-p { font-family: var(--font-h); font-size: 13px; font-weight: 800; color: var(--orange); }
.svc-a { font-size: 12px; color: var(--t30); transition: color .2s; }
.svc-card:hover .svc-a { color: var(--orange); }

/* ═══════════════════════════════
   RESULT CARD
═══════════════════════════════ */
.rc { background: var(--bg4); border: 1px solid var(--border); border-radius: 20px; padding: 36px; text-align: center; transition: all .25s; }
.rc:hover { border-color: rgba(249,115,22,.35); box-shadow: 0 0 40px rgba(249,115,22,.08); transform: translateY(-4px); }
.rc-m { font-family: var(--font-h); font-size: 58px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.rc-l { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.rc-c { font-size: 12px; color: var(--t40); }

/* ═══════════════════════════════
   INDUSTRY CARD
═══════════════════════════════ */
.ind-card { background: var(--bg4); border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px; text-align: center; transition: all .2s; display: block; }
.ind-card:hover { border-color: rgba(249,115,22,.35); background: rgba(249,115,22,.04); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.ind-ic { font-size: 28px; margin-bottom: 10px; }
.ind-n { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ind-s { font-size: 11px; color: var(--t40); }

/* ═══════════════════════════════
   TESTIMONIAL CARD
═══════════════════════════════ */
.testi-card { background: var(--bg4); border: 1px solid var(--border); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; transition: all .25s; }
.testi-card:hover { border-color: rgba(249,115,22,.2); box-shadow: 0 12px 40px rgba(0,0,0,.4); transform: translateY(-3px); }
.t-stars { margin-bottom: 16px; color: var(--yellow); font-size: 15px; letter-spacing: 1px; }
.t-text { font-size: 14px; color: var(--t60); line-height: 1.75; flex: 1; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.t-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0; }
.t-name { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--white); }
.t-role { font-size: 11px; color: var(--t40); }

/* ═══════════════════════════════
   WHY CARD / FEATURE CARD
═══════════════════════════════ */
.why-card { background: var(--bg4); border: 1px solid var(--border); border-radius: 20px; padding: 32px; transition: all .25s; }
.why-card:hover { border-color: rgba(249,115,22,.25); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.4); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.why-t { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-d { font-size: 14px; color: var(--t50); line-height: 1.7; }

/* ═══════════════════════════════
   PRICING CARD
═══════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.pricing-card {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 30px; display: flex; flex-direction: column;
  transition: all .25s; position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); border-color: rgba(249,115,22,.25); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(249,115,22,.12), var(--bg5) 60%);
  border: 2px solid var(--orange);
  box-shadow: 0 20px 60px rgba(249,115,22,.2);
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .12em;
  padding: 6px 16px; border-radius: 999px; text-transform: uppercase;
}
.pricing-card h3 { font-size: 18px; color: var(--white); margin-bottom: 6px; }
.pricing-card .pc-sub { font-size: 12px; color: var(--t40); margin-bottom: 20px; }
.pricing-card .pc-price { font-family: var(--font-h); font-size: 44px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.pricing-card .pc-price small { font-size: 14px; color: var(--t40); font-weight: 500; }
.pricing-card .pc-period { font-size: 12px; color: var(--t40); margin-bottom: 24px; }
.pc-list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.pc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--t70); }
.pc-list li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 14px; flex-shrink: 0; }

/* ═══════════════════════════════
   BLOG CARD
═══════════════════════════════ */
.blog-card { background: var(--bg4); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .25s; display: block; }
.blog-card:hover { border-color: rgba(249,115,22,.25); box-shadow: 0 12px 40px rgba(0,0,0,.5); transform: translateY(-4px); }
.blog-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; border-bottom: 1px solid var(--border); }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.2); color: var(--orange2); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 6px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.blog-t { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.blog-d { font-size: 13px; color: var(--t50); line-height: 1.65; margin-bottom: 16px; }
.blog-m { font-size: 11px; color: var(--t30); }

/* ═══════════════════════════════
   AWARDS / TRUST WALL
═══════════════════════════════ */
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.award-card {
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; text-align: center;
  transition: all .25s;
}
.award-card:hover { border-color: rgba(249,115,22,.35); transform: translateY(-3px); }
.award-ic {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(249,115,22,.18), rgba(251,146,60,.06));
  border: 1px solid rgba(249,115,22,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.award-n { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.award-y { font-size: 11px; color: var(--t40); }

/* ═══════════════════════════════
   STAT COUNTER STRIP
═══════════════════════════════ */
.stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
}
.stat-cell { padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); transition: background .2s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--bg5); }
.stat-v { font-family: var(--font-h); font-size: 38px; font-weight: 800; color: var(--white); line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-size: 11px; color: var(--t40); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ═══════════════════════════════
   CTA BANNER (mid-page)
═══════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(59,130,246,.10));
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 24px; padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-banner h3 { font-family: var(--font-h); font-size: clamp(22px,2.4vw,30px); font-weight: 800; color: var(--white); margin-bottom: 6px; }
.cta-banner p { font-size: 14px; color: var(--t60); }

/* ═══════════════════════════════
   ACTIVITY TICKER
═══════════════════════════════ */
.ticker {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0;
}
.ticker-row { display: flex; gap: 48px; align-items: center; width: max-content; animation: marquee 40s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--t60); white-space: nowrap; }
.ticker-item .pill { font-size: 10px; padding: 3px 8px; border-radius: 999px; background: rgba(34,197,94,.12); color: #4ade80; font-weight: 700; }
.ticker-item .pill.blue { background: rgba(59,130,246,.12); color: var(--blue2); }
.ticker-item .pill.orange { background: rgba(249,115,22,.12); color: var(--orange2); }

/* ═══════════════════════════════
   CASE STUDY MINI
═══════════════════════════════ */
.case-mini { background: var(--bg4); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .25s; display: block; }
.case-mini:hover { border-color: rgba(249,115,22,.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.case-mini .cm-img { height: 180px; background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(59,130,246,.08)); display: flex; align-items: center; justify-content: center; font-size: 64px; border-bottom: 1px solid var(--border); }
.case-mini .cm-body { padding: 22px; }
.case-mini .cm-tag { font-size: 10px; font-weight: 700; color: var(--orange2); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
.case-mini .cm-t { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.case-mini .cm-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.case-mini .cm-stat { background: var(--bg5); border-radius: 8px; padding: 10px; text-align: center; }
.case-mini .cm-stat-v { font-family: var(--font-h); font-size: 16px; font-weight: 800; color: var(--orange); }
.case-mini .cm-stat-l { font-size: 9px; color: var(--t40); text-transform: uppercase; margin-top: 2px; }

/* ═══════════════════════════════
   TEAM CARD
═══════════════════════════════ */
.team-card { background: var(--bg4); border: 1px solid var(--border); border-radius: 20px; padding: 28px; text-align: center; transition: all .25s; }
.team-card:hover { border-color: rgba(249,115,22,.3); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.team-av {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 28px; font-weight: 800; color: #fff;
  border: 3px solid var(--bg5);
}
.team-n { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-r { font-size: 12px; color: var(--orange2); margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.team-d { font-size: 13px; color: var(--t50); line-height: 1.65; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a { width: 32px; height: 32px; border-radius: 8px; background: var(--bg5); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--t60); font-size: 12px; transition: all .2s; }
.team-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ═══════════════════════════════
   LEAD MAGNET
═══════════════════════════════ */
.lead-magnet {
  background: linear-gradient(135deg, rgba(249,115,22,.10), rgba(168,85,247,.06));
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 24px; padding: 44px;
}
.lead-magnet h3 { font-family: var(--font-h); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.lead-magnet p { font-size: 15px; color: var(--t60); margin-bottom: 24px; line-height: 1.7; }
.lead-form { display: flex; gap: 10px; flex-wrap: wrap; }
.lead-form input { flex: 1; min-width: 240px; }

/* ═══════════════════════════════
   ROI CALCULATOR (basic)
═══════════════════════════════ */
.calc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; }
.calc-result {
  background: linear-gradient(135deg, rgba(249,115,22,.10), rgba(59,130,246,.06));
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 20px; padding: 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-result .calc-num { font-family: var(--font-h); font-size: 64px; font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.calc-result .calc-label { font-size: 13px; color: var(--t60); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 960px) {
  .g2, .g3, .g4, .g5, .g6, .pricing-grid, .compare-grid, .calc-grid, .awards-grid { grid-template-columns: 1fr 1fr; }
  .p-steps { grid-template-columns: 1fr 1fr; }
  .p-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .compare-col.featured { margin: 0; }
  .compare-col:first-child, .compare-col:last-child { border-radius: 16px; border: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .g3, .g4, .g5, .g6, .pricing-grid, .compare-grid, .awards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .p-steps { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile slide-in nav ── */
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(320px, 88vw);
  background: var(--bg2); border-left: 1px solid var(--border);
  padding: 80px 24px 24px; z-index: 200; transition: right .3s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 15px; color: var(--t70); border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--orange2); }
.mobile-nav .btn-orange { width: 100%; justify-content: center; margin-top: 16px; }
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 150; opacity: 0; pointer-events: none; transition: opacity .3s; }
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-close { position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }
