/* ══════════════════════════════════════════════════════════════════
   EbizON Digital — Hire App Developer India Landing Page
   Colour palette: deep navy + electric blue
   ══════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --ink: #0b0f1a;
  --ink-2: #1e2535;
  --muted: #64748b;
  --border: #e2e8f0;
  --surface: #ffffff;
  --gray-bg: #f8fafc;
  --blue: #2563eb;
  --blue-d: #1d4ed8;
  --blue-l: #dbeafe;
  --blue-m: #3b82f6;
  --green: #16a34a;
  --green-l: #dcfce7;
  --purple: #7c3aed;
  --purple-l: #ede9fe;
  --dark: #0b0f1a;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .14);
  --t: .2s ease;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── Shared buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  font-weight: 700;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 18px rgba(37, 99, 235, .35);
}

.btn-primary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--gray-bg);
  border-color: #c7d2e0;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Pill badge ─────────────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--blue-l);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pill-dark {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
}

/* ── Section wrappers ───────────────────────────────────────────── */
.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section h2 em {
  font-style: normal;
  color: var(--blue);
}

.section h2.light,
.section h2.light em {
  color: #fff;
}

.section h2.light em {
  color: #60a5fa;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-sub.light {
  color: #94a3b8;
}

.bg-gray {
  background: var(--gray-bg);
}

.bg-dark {
  background: var(--dark);
}

/* ══ NAVBAR ════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: box-shadow .2s;
}

#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
  height: 68px;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-img-light {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  transition: color .15s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 8px 18px;
  background: var(--blue);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: background .2s !important;
}

.nav-cta:hover {
  background: var(--blue-d) !important;
}

.nav-phone {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
}

/* ══ HERO ══════════════════════════════════════════════════════════ */
.hero {
  padding-top: 120px;
  background: linear-gradient(160deg, var(--ink) 0%, #0f1829 55%, #111827 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: #60a5fa;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-sub strong {
  color: rgba(255, 255, 255, .9);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .2);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

.hero-social-proof strong {
  color: rgba(255, 255, 255, .8);
}

/* ── Phone mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 240px;
  height: 480px;
  background: #1a1f2e;
  border-radius: 36px;
  border: 6px solid #2d3550;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #1a1f2e;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  padding: 4px 14px 14px;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-ui {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  flex-shrink: 0;
}

.app-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-icon-btn {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
}

.app-banner {
  height: 90px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
  position: relative;
  overflow: hidden;
}

.app-banner::after {
  content: '📱 Your App Here';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.app-card {
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.app-card-blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, .3), rgba(59, 130, 246, .15));
}

.app-card-dark {
  background: rgba(255, 255, 255, .05);
}

.app-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.app-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .15);
}

.app-line-sm {
  height: 5px;
}

.app-line-xs {
  height: 4px;
  width: 55%;
}

.w40 {
  width: 40%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.app-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
}

.app-dot-green {
  background: #22c55e;
}

.app-dot-amber {
  background: #f59e0b;
}

.app-nav-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}

.app-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}

.app-nav-dot.active {
  background: var(--blue);
  width: 18px;
  border-radius: 3px;
}

/* Platform chips on phone */
.phone-badge-chip {
  position: absolute;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
}

.chip-ios {
  top: 30px;
  right: -20px;
  background: rgba(37, 99, 235, .85);
  color: #fff;
}

.chip-android {
  bottom: 100px;
  right: -30px;
  background: rgba(22, 163, 74, .85);
  color: #fff;
}

.chip-rn {
  bottom: 50px;
  left: -25px;
  background: rgba(124, 58, 237, .85);
  color: #fff;
}

/* ── Chip ticker ── */
.chip-track-wrap {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.chip-track {
  display: flex;
  gap: 12px;
  animation: ticker 32s linear infinite;
  width: max-content;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══ TRUST BAR ═════════════════════════════════════════════════════ */
.trust-bar {
  padding: 40px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.trust-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.logo-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-pill {
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}

/* ══ HOW IT WORKS ══════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-l);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══ FEATURE SPLITS ════════════════════════════════════════════════ */
.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.feat-split-rev {
  direction: rtl;
}

.feat-split-rev>* {
  direction: ltr;
}

.feat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--blue-l);
  color: var(--blue);
  margin-bottom: 14px;
}

.feat-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.feat-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--ink);
}

.feat-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-l);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feat-visual {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.feat-visual-blue {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

.feat-visual-green {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.feat-visual-purple {
  background: linear-gradient(135deg, #ede9fe, #f5f3ff);
}

.feat-visual-dark {
  background: linear-gradient(135deg, #1e2535, #0f1829);
}

.feat-icon-lg {
  font-size: 3.5rem;
}

.feat-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feat-tags-grid span {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .6);
}

.feat-visual-dark .feat-tags-grid span {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .1);
}

/* ── Code block ── */
.code-block {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: .78rem;
  line-height: 1.75;
  color: #e2e8f0;
  width: 100%;
}

.code-indent {
  padding-left: 20px;
}

.code-kw {
  color: #93c5fd;
}

.code-fn {
  color: #6ee7b7;
}

.code-str {
  color: #fde68a;
}

.code-cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: #60a5fa;
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ── Specialisations chips ── */
.chips-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 16px;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chips-grid .chip {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: .85rem;
}

/* ── Vibe cards ── */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.vibe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.vibe-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.vibe-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.vibe-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══ STATS BAND ════════════════════════════════════════════════════ */
.stats-band {
  background: var(--blue);
  padding: 60px 24px;
}

.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

.stat-n {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.stat-suf {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .7);
}

.stat-item p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
  margin-top: 6px;
  font-weight: 500;
}

/* ══ CREME-STYLE PRICING ═══════════════════════════════════════════ */
.pricing-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.creme-card {
  background: #141927;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}

.creme-card:hover {
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45);
}

.creme-card-featured {
  background: #18213b;
  border-color: rgba(37, 99, 235, .5);
  box-shadow: 0 8px 40px rgba(37, 99, 235, .18);
}

.creme-card-featured:hover {
  border-color: var(--blue);
  box-shadow: 0 24px 64px rgba(37, 99, 235, .32);
}

.creme-card-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.creme-plan-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.creme-plan-name {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #a5b4d0;
}

.creme-pause-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .07);
  color: #94a3b8;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
}

.creme-pause-light {
  border-color: rgba(37, 99, 235, .4);
  background: rgba(37, 99, 235, .12);
  color: #93c5fd;
}

.creme-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.creme-price {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
}

.creme-period {
  font-size: .9rem;
  font-weight: 500;
  color: #64748b;
}

.creme-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: #94a3b8;
}

.creme-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 28px 0;
}

.creme-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.creme-includes {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #64748b;
}

.creme-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.creme-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.creme-perks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .18);
  color: #60a5fa;
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.creme-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #e2e8f0;
  transition: background .2s, border-color .2s, color .2s;
  margin-top: 8px;
}

.creme-btn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.creme-btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .4);
}

.creme-btn-primary:hover {
  background: var(--blue-d);
  border-color: var(--blue-d);
  box-shadow: 0 6px 28px rgba(37, 99, 235, .55);
  color: #fff;
}

.creme-consult {
  text-align: center;
  margin-top: 36px;
  font-size: .9rem;
  color: #64748b;
}

.creme-consult a {
  color: #60a5fa;
  font-weight: 600;
  transition: color .2s;
}

.creme-consult a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* ══ TECH STACK ════════════════════════════════════════════════════ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stack-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.stack-group h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-tags span {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--blue-l);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
}

/* ══ CASE STUDIES ══════════════════════════════════════════════════ */
.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.case-study {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}

.case-study:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.case-tag {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  background: var(--blue-l);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.case-study h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.case-study p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-results {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-results li {
  font-size: .83rem;
  color: var(--ink);
}

.portfolio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ══ TESTIMONIALS ══════════════════════════════════════════════════ */
.testis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.testi-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testi-card>p {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: .9rem;
}

.testi-author span {
  font-size: .8rem;
  color: var(--muted);
}

/* ══ FAQ ═══════════════════════════════════════════════════════════ */
.faq-inner {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-q.open::after {
  content: '×';
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  overflow: hidden;
  padding-bottom: 20px;
}

.faq-a.open {
  display: block;
}

.faq-a p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ══ CTA BAND ══════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  padding: 80px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 32px;
}

.cta-inner .btn-primary {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.cta-inner .btn-primary:hover {
  background: #f1f5f9;
}

/* ══ CONTACT ═══════════════════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .pill {
  display: inline-block;
}

.contact-info h2 {
  margin: 0 0 16px;
}

.contact-info>p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 1.3rem;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: .88rem;
  color: var(--muted);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  cursor: pointer;
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

/* ══ FOOTER ════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 60px 24px 0;
}

.foot-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.foot-brand p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.foot-logo {
  height: 30px;
  margin-bottom: 0;
}

.foot-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.foot-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--t);
}

.foot-socials a:hover {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

.foot-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.foot-links h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px;
}

.foot-links a {
  display: block;
  font-size: .87rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 10px;
  transition: color .15s;
}

.foot-links a:hover {
  color: rgba(255, 255, 255, .85);
}

.foot-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  text-align: center;
}

/* ── Back to top ── */
#backTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
  box-shadow: 0 4px 16px rgba(37, 99, 235, .4);
  cursor: pointer;
}

#backTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#backTop:hover {
  background: var(--blue-d);
}

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
  white-space: nowrap;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.live-chat-sticky{
    position: fixed;
    left: -50px;
    top: 50%;
    transform: rotate(-90deg);
    z-index: 9999;
    background: #4769f1;
    color: #fff;
    padding: 12px 22px;
    border-radius: 0px 0px 10px 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease;
}

.live-chat-sticky:hover{
    background: #fff;
    color: #4769f1;
}

.live-chat-banner{
    width:100%;
    background: linear-gradient(180deg, #1E3A8A 0%, #3B82F6 100%);
    position:fixed;
    top:-100%;
    left:0;
    z-index:999999;
    padding:28px 20px 18px;
    text-align:center;
    box-sizing:border-box;
    transition:0.5s ease;
    height:auto;
}
.live-chat-banner .live-chat-inner{
    max-width:480px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.live-chat-banner.show{
    top:0;
    transform: translateY(0);
    pointer-events: all;
}

.live-chat-inner img{
    width:72px;
    height:72px;
    border-radius:50%;
    object-fit:cover;
    /* margin-bottom:14px; */
}

.live-chat-inner h2{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin:0;
    letter-spacing:0.5px;
    font-family:Arial,sans-serif;
}

.live-chat-inner p{
    color:#fff;
    font-size:15px;
    /* margin-top:16px; */
    margin-bottom:10px;
    font-family:Arial,sans-serif;
}

.live-chat-btns{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.live-chat-btns a{
    text-decoration:none;
    padding:10px 26px;
    border-radius:40px;
    font-size:15px;
    font-weight:500;
    font-family:Arial,sans-serif;
    transition:0.3s;
}

.start-btn{
    background:white;
    color:black;
}

.no-btn{
    background:#55555f;
    color:#fff;
}

.start-btn:hover{
    background:#fff;
    color:#4769f1;
}

.no-btn:hover{
    background:#666;
}



@media(max-width:768px){

    .live-chat-inner h2{
        font-size:22px;
    }

    .live-chat-inner p{
        font-size:15px;
    }

    .live-chat-btns a{
        font-size:15px;
        padding:12px 20px;
    }
    
}

/* ══ RESPONSIVE ════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-phone {
    display: none;
  }

  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .pricing-3-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-studies {
    grid-template-columns: 1fr;
  }

  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .feat-split {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .feat-split-rev .feat-visual {
    order: 0;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ink-2);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .burger {
    display: flex;
  }

  .testis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-links {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 440px) {
  .foot-links {
    grid-template-columns: 1fr;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }
}