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

:root {
  --ink:     #0a0f1e;
  --ink2:    #1e2640;
  --muted:   #64748b;
  --accent:  #ff5c35;
  --accent2: #ffa500;
  --surface: #f4f6fb;
  --white:   #ffffff;
  --grad:    linear-gradient(135deg, #ff5c35 0%, #ffa500 100%);
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(10,15,30,.10);
  --shadow-lg: 0 20px 60px rgba(10,15,30,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  /* offset for fixed header (top-bar 38px + nav 68px) */
  padding-top: 106px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 7rem 6vw 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, #fff5f2 0%, #f4f6fb 60%, #eef1f8 100%);
}
.hero-blob {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: clamp(340px, 50vw, 640px);
  aspect-ratio: 1;
  background: var(--grad);
  border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%;
  opacity: .12;
  filter: blur(60px);
  animation: blobFloat 8s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  from { border-radius: 60% 40% 55% 45% / 55% 45% 55% 45%; transform: translateY(-52%) rotate(0deg); }
  to   { border-radius: 45% 55% 40% 60% / 45% 60% 40% 55%; transform: translateY(-48%) rotate(6deg); }
}
.hero-grid-img {
  position: absolute; right: 6vw; top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 42vw, 560px);
  z-index: 1;
}
.hero-mockup {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.8);
  background: var(--white);
  overflow: hidden;
}
.mockup-bar {
  height: 36px; background: #f0f2f7;
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
  border-bottom: 1px solid #e2e5ee;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-inner { padding: 20px; }
.mockup-kpi {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px;
}
.kpi-card {
  background: var(--surface); border-radius: 10px;
  padding: 12px; text-align: center;
}
.kpi-val {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800; color: var(--accent);
}
.kpi-label { font-size: .68rem; color: var(--muted); font-weight: 500; }
.mockup-chart {
  height: 80px; background: var(--surface); border-radius: 10px;
  display: flex; align-items: flex-end; gap: 6px; padding: 12px 16px 10px;
  overflow: hidden;
}
.bar-item {
  flex: 1; border-radius: 4px 4px 0 0;
  background: var(--grad);
  animation: barGrow .9s ease-out both;
}
@keyframes barGrow { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff5f2; border: 1px solid #ffd0c5;
  color: var(--accent); font-size: .8rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.6rem;
  letter-spacing: .3px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px;
  color: var(--ink); margin-bottom: 1.4rem;
}
.hero h1 .highlight {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--muted);
  font-weight: 400; line-height: 1.75;
  max-width: 480px; margin-bottom: 2.2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad); color: #fff;
  padding: .8rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,92,53,.38);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(255,92,53,.48); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid var(--ink); color: var(--ink);
  padding: .75rem 1.8rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-trust {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.8rem; flex-wrap: wrap;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: #fff;
  margin-left: -10px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: .85rem; color: var(--muted); }
.trust-text strong { color: var(--ink); }

/* ── LOGOS ── */
.logos {
  padding: 2.5rem 6vw;
  background: var(--surface);
  text-align: center;
  border-top: 1px solid #e8eaf0;
  border-bottom: 1px solid #e8eaf0;
}
.logos p { font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 600; margin-bottom: 1.4rem; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem,4vw,4rem); flex-wrap: wrap; }
.logo-item {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  color: #aab0c0; letter-spacing: -.3px;
  transition: color .2s;
}
.logo-item:hover { color: var(--ink); }

/* ── SECTION COMMONS ── */
section { padding: 6rem 6vw; }
.section-tag {
  display: inline-block;
  font-size: .75rem; text-transform: uppercase; letter-spacing: 2.5px;
  font-weight: 700; color: var(--accent);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 540px; line-height: 1.75;
}
.section-header { max-width: 660px; }
.section-header.center { text-align: center; margin: 0 auto 4rem; max-width: 620px; }

/* ── SERVICES ── */
.services { background: var(--white); }

/* Services intro: text left, orbit visual right */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* ── Orbit visual ── */
.svc-orbit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-orbit {
  position: relative;
  width: 320px;
  height: 320px;
}

/* Spinning orbit ring */
.svc-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255,92,53,.25);
  animation: orbitSpin 18s linear infinite;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

/* Centre hub */
.svc-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ff5c35,#ffa500);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(255,92,53,.35);
  z-index: 2;
  animation: hubPulse 2.8s ease-in-out infinite;
}
@keyframes hubPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(255,92,53,.35); transform: translate(-50%,-50%) scale(1); }
  50%      { box-shadow: 0 12px 44px rgba(255,92,53,.55); transform: translate(-50%,-50%) scale(1.06); }
}
.svc-hub-icon  { font-size: 1.8rem; line-height: 1; }
.svc-hub-label { font-size: .65rem; font-weight: 700; color: #fff; letter-spacing: .5px; text-align: center; }

/* Satellites — evenly placed around the ring */
.svc-satellite {
  position: absolute;
  top: 50%; left: 50%;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255,92,53,.18);
  box-shadow: 0 4px 18px rgba(10,15,30,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  /* position on ring: offset = 140px radius, rotate by 60deg * --i, then counter-rotate label */
  transform: translate(-50%,-50%)
             rotate(calc(60deg * var(--i)))
             translateY(-140px)
             rotate(calc(-60deg * var(--i)));
  animation: orbitSpin 18s linear infinite,
             satFloat 3s ease-in-out infinite;
  animation-delay: 0s, calc(var(--i) * 0.5s);
}
@keyframes satFloat {
  0%,100% { box-shadow: 0 4px 18px rgba(10,15,30,.1); }
  50%      { box-shadow: 0 8px 28px rgba(255,92,53,.18); transform: translate(-50%,-50%)
               rotate(calc(60deg * var(--i)))
               translateY(-136px)
               rotate(calc(-60deg * var(--i))); }
}
.svc-satellite span { font-size: 1.3rem; line-height: 1; }
.svc-satellite small { font-size: .6rem; font-weight: 700; color: #475569; letter-spacing: .3px; }

@media(max-width:900px) {
  .services-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-orbit-wrap {
    display: flex;
    justify-content: center;
    margin: 1rem auto 0;
    order: -1; /* show orbit ABOVE the text on mobile */
  }
  .svc-orbit {
    width: 260px;
    height: 260px;
  }
  .svc-hub {
    width: 90px;
    height: 90px;
  }
  .svc-hub-icon  { font-size: 1.4rem; }
  .svc-hub-label { font-size: .58rem; }
  .svc-satellite {
    width: 60px;
    height: 60px;
    transform: translate(-50%,-50%)
               rotate(calc(60deg * var(--i)))
               translateY(-108px)
               rotate(calc(-60deg * var(--i)));
  }
  .svc-satellite span { font-size: 1.1rem; }
  .svc-satellite small { font-size: .52rem; }
  @keyframes satFloat {
    0%,100% { box-shadow: 0 4px 18px rgba(10,15,30,.1); }
    50%      { box-shadow: 0 8px 28px rgba(255,92,53,.18);
               transform: translate(-50%,-50%)
                 rotate(calc(60deg * var(--i)))
                 translateY(-104px)
                 rotate(calc(-60deg * var(--i))); }
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
@media(max-width:900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1.5px solid #e8eaf2;
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0;
  transition: opacity .35s;
  border-radius: var(--radius);
  z-index: 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-icon,
.service-card:hover .sc-title,
.service-card:hover .sc-desc,
.service-card:hover .sc-link { color: #fff; }
.service-card:hover .sc-icon-wrap { background: rgba(255,255,255,.2); }
.service-card > * { position: relative; z-index: 1; }
.sc-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: #fff5f2; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; transition: background .3s;
}
.sc-icon { font-size: 1.5rem; }
.sc-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: .6rem;
  transition: color .3s;
}
.sc-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  transition: color .3s, max-height .5s ease, -webkit-mask-image .5s;
  /* Clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.7em * 3);
}
.service-card:hover .sc-desc {
  -webkit-line-clamp: unset;
  max-height: 40em;
  overflow: visible;
}
.sc-link { font-size: .85rem; font-weight: 600; color: var(--accent); text-decoration: none; transition: color .3s; }

/* ── STATS ── */
.stats {
  background: var(--ink);
  color: #fff;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 3rem; align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,3.8rem);
  font-weight: 800; letter-spacing: -2px;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .9rem; color: #8899bb; font-weight: 400; margin-top: .3rem; }
.stat-desc { color: #c8d0e0; font-size: 1rem; line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how { background: var(--surface); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem; margin-top: 3.5rem; position: relative;
}
.step {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800; letter-spacing: -2px;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: .8rem;
}
.step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.step-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── RESULTS / TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.testi-card {
  border: 1.5px solid #e8eaf2; border-radius: var(--radius);
  padding: 2rem; transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: var(--accent2); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: .95rem; color: var(--ink2); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: #fff;
}
.author-name { font-weight: 600; font-size: .9rem; }
.author-role { font-size: .78rem; color: var(--muted); }

/* ── PRICING ── */
/* ── Pricing teaser (index page) ── */
.pricing-teaser { background: var(--surface); padding: 5rem 1.5rem; text-align: center; }
.pricing-teaser-tabs {
  display: flex; justify-content: center; gap: .6rem;
  flex-wrap: wrap; margin: 2.4rem 0 2rem;
}
.ptab-link {
  display: inline-block;
  background: var(--white); border: 2px solid #e2e5ee;
  color: var(--ink2); font-family: var(--font-body);
  font-size: .9rem; font-weight: 600;
  padding: .6rem 1.5rem; border-radius: 50px;
  text-decoration: none; transition: all .25s;
}
.ptab-link:hover { border-color: var(--accent); color: var(--accent); background: #fff5f2; }
.pricing-teaser-cta {
  display: inline-block;
  background: var(--grad); color: #fff;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  padding: .9rem 2.5rem; border-radius: 50px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,92,53,.35);
  transition: transform .2s, box-shadow .2s;
}
.pricing-teaser-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,92,53,.5); }

.pricing { background: var(--surface); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem; margin-top: 3.5rem; align-items: start;
}
.plan {
  background: var(--white); border: 1.5px solid #e8eaf2;
  border-radius: var(--radius); padding: 2.2rem 2rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured {
  background: var(--ink); border-color: var(--ink);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.plan.featured:hover { transform: scale(1.04) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .3rem 1.1rem; border-radius: 50px; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: .8rem;
}
.plan.featured .plan-name { color: #8899bb; }
.plan-price {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800; letter-spacing: -2px;
  color: var(--ink); line-height: 1;
}
.plan.featured .plan-price { color: #fff; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-divider { height: 1px; background: #e8eaf2; margin: 1.4rem 0; }
.plan.featured .plan-divider { background: #2e3955; }
.plan-features { list-style: none; margin-bottom: 1.8rem; }
.plan-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--ink2); padding: .35rem 0;
}
.plan.featured .plan-features li { color: #c8d0e0; }
.check { color: var(--accent); font-weight: 700; }
.plan-btn {
  display: block; text-align: center;
  padding: .75rem; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: all .25s;
}
.plan-btn.outline { border: 2px solid #e8eaf2; color: var(--ink); }
.plan-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn.solid { background: var(--grad); color: #fff; box-shadow: 0 6px 20px rgba(255,92,53,.38); }
.plan-btn.solid:hover { box-shadow: 0 10px 30px rgba(255,92,53,.5); transform: translateY(-2px); }

/* ── ENTERPRISE ── */
.enterprise {
  background: var(--surface);
  padding: 6rem 6vw;
  border-top: 1px solid #e8eaf0;
}
.enterprise-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.enterprise-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.15; color: var(--ink);
  margin: .6rem 0 1rem;
}
.enterprise-highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.enterprise-sub { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.2rem; }
.enterprise-sub em { color: var(--ink2); font-style: italic; }
.enterprise-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.enterprise-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1.5px solid #e8eaf2;
  border-radius: 12px; padding: 1rem 1.2rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.enterprise-list li:hover { border-color: var(--accent); box-shadow: 0 6px 24px rgba(255,92,53,.1); transform: translateX(4px); }
.ent-icon { font-size: 1.35rem; width: 40px; height: 40px; background: #fff5f2; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ent-title { font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: .2rem; }
.ent-desc { font-size: .83rem; color: var(--muted); line-height: 1.5; }
.enterprise-right { position: sticky; top: 88px; }
.enterprise-card { background: var(--ink); border-radius: 20px; padding: 2.4rem 2rem; box-shadow: 0 24px 60px rgba(10,15,30,.22); position: relative; overflow: hidden; }
.enterprise-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,92,53,.2) 0%, transparent 65%); pointer-events: none; }
.ent-card-tag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--accent2); margin-bottom: .8rem; }
.ent-card-heading { font-family: 'Manrope', sans-serif; font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -.5px; line-height: 1.2; margin-bottom: .8rem; }
.ent-card-sub { font-size: .88rem; color: #8899bb; line-height: 1.75; margin-bottom: 1.4rem; }
.ent-card-points { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.8rem; }
.ent-card-points li { font-size: .85rem; color: #c8d4e8; display: flex; align-items: center; gap: .5rem; }
.ent-cta-btn { display: block; text-align: center; background: var(--grad); color: #fff; text-decoration: none; padding: .9rem 1.6rem; border-radius: 50px; font-weight: 700; font-size: .97rem; letter-spacing: .2px; box-shadow: 0 8px 28px rgba(255,92,53,.4); transition: transform .25s, box-shadow .25s; position: relative; z-index: 1; }
.ent-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,92,53,.52); }
.ent-card-or { text-align: center; font-size: .75rem; color: #475569; text-transform: uppercase; letter-spacing: 1.5px; margin: 1.2rem 0 .9rem; position: relative; z-index: 1; }
.ent-card-contacts { display: flex; gap: .7rem; position: relative; z-index: 1; }
.ent-contact-link { flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem; padding: .6rem .5rem; border-radius: 10px; font-size: .82rem; font-weight: 700; text-decoration: none; transition: all .2s; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: #fff; }
.ent-contact-link:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.ent-wa { background: rgba(37,211,102,.15) !important; border-color: rgba(37,211,102,.3) !important; }
.ent-wa:hover { background: rgba(37,211,102,.25) !important; }
.ent-card-note { text-align: center; font-size: .74rem; color: #475569; margin-top: 1.1rem; margin-bottom: 0; position: relative; z-index: 1; }

@media (max-width: 900px) { .enterprise-inner { grid-template-columns: 1fr; gap: 2.5rem; } .enterprise-right { position: static; } }

/* ── RECENT BLOGS ── */
.recent-blogs { background: var(--white); padding: 6rem 6vw; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
@media(max-width:900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px) { .blog-grid { grid-template-columns: 1fr; } }

/* Real card */
.blog-card {
  background: var(--white);
  border: 1.5px solid #e8eaf2;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #f1f5f9;
  display: block;
}
.blog-card-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg,#f1f5f9,#e8eaf2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-body {
  padding: 1.4rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .7rem;
}
.blog-card-meta .blog-cat {
  background: #fff5f2;
  color: var(--accent);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 50px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: .7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.blog-card-read {
  font-size: .83rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
}
.blog-card:hover .blog-card-read { text-decoration: underline; }

/* Skeleton loader */
.blog-skeleton {
  min-height: 320px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e8eaf2 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes skelShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error state */
.blog-error {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--muted);
  font-size: .95rem;
}

.blog-cta-wrap { text-align: center; margin-top: 2.5rem; }
.blog-view-all {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  padding: .75rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s;
}
.blog-view-all:hover { background: var(--accent); color: #fff; }

/* ══════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════ */
.faq-section {
  padding: 6rem 6vw;
  background: #f8faff;
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,92,53,.07) 0%, transparent 70%);
  pointer-events: none;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid layout — two columns on wide screens */
.faq-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  align-items: start;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Individual accordion item */
.faq-item {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,15,30,.05);
  transition: box-shadow .25s, border-color .25s;
}
.faq-item:hover {
  box-shadow: 0 6px 28px rgba(10,15,30,.10);
  border-color: rgba(255,92,53,.30);
}
.faq-item.open {
  border-color: rgba(255,92,53,.45);
  box-shadow: 0 8px 32px rgba(255,92,53,.10);
}

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.35rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0a0f1e;
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
  transition: color .2s;
}
.faq-q:hover { color: #ff5c35; }
.faq-item.open .faq-q { color: #ff5c35; }

/* Animated +/× icon */
.faq-icon {
  flex-shrink: 0;
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .25s, transform .3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #64748b;
  border-radius: 2px;
  transition: transform .3s, opacity .25s, background .25s;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after  { width: 2px; height: 12px; }

.faq-item.open .faq-icon {
  background: linear-gradient(135deg, #ff5c35, #f59e0b);
  transform: rotate(45deg);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }

/* Answer panel — height animated via JS max-height trick */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}
.faq-item.open .faq-a {
  max-height: 600px;
}
.faq-a p {
  padding: 0 1.6rem 1.4rem;
  font-size: .925rem;
  line-height: 1.75;
  color: #475569;
}
.faq-a strong { color: #0a0f1e; }
.faq-inline-link {
  color: #ff5c35;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-inline-link:hover { opacity: .8; }

/* Number accent on each item */
.faq-item { counter-increment: faq-counter; }
.faq-grid  { counter-reset: faq-counter; }
.faq-q::before {
  content: counter(faq-counter, decimal-leading-zero);
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 800;
  color: #ff5c35;
  background: rgba(255,92,53,.08);
  border-radius: 6px;
  padding: .2rem .45rem;
  letter-spacing: .04em;
  min-width: 32px;
  text-align: center;
}

@media (max-width: 600px) {
  .faq-q { font-size: .9rem; padding: 1.1rem 1.2rem; }
  .faq-a p { padding: 0 1.2rem 1.2rem; }
}

/* ── CTA BANNER ── */
.cta-banner { background: var(--ink); padding: 6rem 6vw; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,92,53,.18) 0%, transparent 65%); }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: #8899bb; font-size: 1.05rem; margin-bottom: 2.4rem; position: relative; }
.cta-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-btn-white { display: inline-flex; align-items: center; gap: .5rem; background: #fff; color: var(--ink); padding: .9rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all .25s; box-shadow: 0 6px 24px rgba(0,0,0,.18); }
.cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0,0,0,.28); }
.cta-btn-ghost { display: inline-flex; align-items: center; gap: .5rem; border: 2px solid rgba(255,255,255,.25); color: #fff; padding: .85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: border-color .25s; }
.cta-btn-ghost:hover { border-color: rgba(255,255,255,.7); }

/* ── PR INTRO ── */
.pr-intro {
  background: linear-gradient(135deg, #fff5f2, #fff9f0);
  border: 1.5px solid #ffd4c8;
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem;
  font-size: .92rem; color: var(--ink2); line-height: 1.65;
}
.pr-intro strong { color: var(--accent); }
.pr-view-all {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem;
  background: var(--grad); color: #fff; text-decoration: none;
  padding: .75rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(255,92,53,.35);
  transition: transform .25s, box-shadow .25s;
}
.pr-view-all:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,92,53,.48); }

/* ── PRICING TABS ── */
.pricing-tabs { display: flex; justify-content: center; gap: .6rem; flex-wrap: wrap; margin: 2.8rem 0 2.4rem; }
.ptab { background: var(--white); border: 2px solid #e2e5ee; color: var(--ink2); font-family: var(--font-body); font-size: .9rem; font-weight: 600; padding: .6rem 1.5rem; border-radius: 50px; cursor: pointer; transition: all .25s; }
.ptab:hover { border-color: var(--accent); color: var(--accent); }
.ptab.active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 4px 16px rgba(255,92,53,.35); }
.pricing-pane.hidden { display: none; }

/* ── ABOUT FANCY ── */
.about-fancy { position: relative; background: var(--white); padding: 5rem 6vw; overflow: hidden; }
.about-fancy::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,92,53,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,92,53,.04) 1px, transparent 1px); background-size: 48px 48px; animation: gridMove 12s linear infinite; pointer-events: none; }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 48px 48px; } }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .18; pointer-events: none; animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 340px; height: 340px; background: #ff5c35; top: -80px; right: 5%; animation-delay: 0s; }
.orb-2 { width: 260px; height: 260px; background: #ffa500; bottom: -60px; left: 8%; animation-delay: -3s; }
.orb-3 { width: 180px; height: 180px; background: #6c63ff; top: 40%; right: 28%; animation-delay: -5s; }
@keyframes orbFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.06); } }
.about-inner { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }
.about-left-header { text-align: center; margin-bottom: 1.8rem; }
.about-tag { display: inline-flex; align-items: center; gap: .45rem; background: linear-gradient(135deg,#fff3ef,#fff8f0); border: 1px solid rgba(255,92,53,.25); color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; margin-bottom: .8rem; }
.about-tag::before { content: '●'; font-size: .55rem; animation: pulse-dot 1.4s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
.about-h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.25; color: var(--ink); margin-top: .6rem; }
.about-h2 .grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-paras { columns: 2; column-gap: 2rem; column-rule: 1px solid #e0e4ef; margin-bottom: 2rem; }
.about-paras p { font-size: .93rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; break-inside: avoid; }
.about-paras strong { color: var(--ink); font-weight: 700; }
.about-cta-bar { background: linear-gradient(135deg,#fff6f4,#fffaf6); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.6rem; }
.about-cta-bar p { font-size: .94rem; color: var(--ink); line-height: 1.7; margin-bottom: .35rem; }
.about-cta-bar strong { color: var(--accent); }
/* Pull-quote standalone section */
.pq-section {
  padding: 0 1.5rem;
  margin: 3rem auto;
  max-width: 860px;
}

/* Pull-quote block */
.pull-quote {
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2240 100%);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,15,30,.18);
}
.pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,92,53,.18) 0%, transparent 65%);
  pointer-events: none;
}
.pull-quote-words {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.pq-word {
  font-family: 'Manrope', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, #ff5c35, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pqPulse 3s ease-in-out infinite;
}
.pq-word:nth-child(3) { animation-delay: .4s; }
.pq-word:nth-child(5) { animation-delay: .8s; }
@keyframes pqPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: .75; transform: translateY(-3px); }
}
.pq-dot {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  line-height: 1;
}
.pq-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: #a0aec0;
  line-height: 1.6;
  position: relative;
}
.pq-sub em {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}
.about-visual { background: var(--ink); border-radius: 24px; padding: 2rem; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(10,15,30,.28); }
.about-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 20%, rgba(255,92,53,.18) 0%, transparent 60%), radial-gradient(ellipse at 80% 80%, rgba(255,165,0,.14) 0%, transparent 55%); pointer-events: none; }
.dash-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.dash-label::after { content: 'LIVE'; font-size: .65rem; background: #1db954; color: #fff; padding: .15rem .45rem; border-radius: 4px; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.metrics-row { display: flex; gap: 1rem; justify-content: space-between; margin-bottom: 1.6rem; }
.metric-ring { flex: 1; text-align: center; }
.ring-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 8px; }
.ring-svg { width: 80px; height: 80px; transform: rotate(-90deg); display: block; }
.ring-track { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 7; }
.ring-fill { fill: none; stroke-width: 7; stroke-linecap: round; stroke-dasharray: 201; stroke-dashoffset: 201; animation: fillRing 1.8s ease forwards; }
.ring-fill.r1 { stroke: #ff5c35; animation-delay: .3s; --target: 30; }
.ring-fill.r2 { stroke: #ffa500; animation-delay: .5s; --target: 60; }
.ring-fill.r3 { stroke: #6c63ff; animation-delay: .7s; --target: 100; }
@keyframes fillRing { to { stroke-dashoffset: var(--target); } }
.ring-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; color: #fff; }
.ring-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.kw-cloud { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.kw-chip { font-size: .75rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; border: 1px solid; color: #fff; animation: floatChip 3s ease-in-out infinite; }
.kw-chip:nth-child(1) { border-color: #ff5c35; background: rgba(255,92,53,.15);  animation-delay: 0s; }
.kw-chip:nth-child(2) { border-color: #ffa500; background: rgba(255,165,0,.15);  animation-delay: .4s; }
.kw-chip:nth-child(3) { border-color: #6c63ff; background: rgba(108,99,255,.15); animation-delay: .8s; }
.kw-chip:nth-child(4) { border-color: #1db954; background: rgba(29,185,84,.15);  animation-delay: 1.2s; }
.kw-chip:nth-child(5) { border-color: #00b4d8; background: rgba(0,180,216,.15);  animation-delay: 1.6s; }
.kw-chip:nth-child(6) { border-color: #e040fb; background: rgba(224,64,251,.15); animation-delay: 2s; }
@keyframes floatChip { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.act-label { font-size: .7rem; color: rgba(255,255,255,.35); margin-bottom: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.bar-row { display: flex; gap: .25rem; align-items: flex-end; height: 48px; }
.bar { flex: 1; border-radius: 4px; transform-origin: bottom; animation: growBar 1.2s ease forwards; transform: scaleY(0); }
.bar:nth-child(1) { height: 40%; background: rgba(255,92,53,.6);  animation-delay: .1s; }
.bar:nth-child(2) { height: 65%; background: rgba(255,92,53,.7);  animation-delay: .2s; }
.bar:nth-child(3) { height: 50%; background: rgba(255,165,0,.6);  animation-delay: .3s; }
.bar:nth-child(4) { height: 80%; background: rgba(255,165,0,.75); animation-delay: .4s; }
.bar:nth-child(5) { height: 60%; background: rgba(108,99,255,.6); animation-delay: .5s; }
.bar:nth-child(6) { height: 90%; background: rgba(108,99,255,.8); animation-delay: .6s; }
.bar:nth-child(7) { height: 70%; background: rgba(29,185,84,.65); animation-delay: .7s; }
.bar:nth-child(8) { height: 100%;background: rgba(29,185,84,.9);  animation-delay: .8s; }
@keyframes growBar { to { transform: scaleY(1); } }
.dash-stats { display: flex; justify-content: space-between; margin-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.2rem; }
.dash-stat-val { font-size: 1.3rem; font-weight: 800; color: #fff; display: block; }
.dash-stat-val span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dash-stat-key { font-size: .7rem; color: rgba(255,255,255,.4); margin-top: .15rem; }

@media (max-width: 960px) { .about-inner { grid-template-columns: 1fr; } .about-paras { columns: 1; } .about-visual { margin-top: 2rem; } }
@media (max-width: 560px) { .about-h2 { font-size: 1.35rem; } }

/* ── WEBDEV PROMO ── */
.webdev-promo { background: #060c1a; padding: 6rem 6vw; position: relative; overflow: hidden; }
.webdev-promo::before { content: ''; position: absolute; top: -100px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,53,.15) 0%, transparent 65%); pointer-events: none; }
.webdev-promo::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,165,0,.1) 0%, transparent 65%); pointer-events: none; }
.webdev-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.webdev-heading { font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: #fff; margin: .6rem 0 1.2rem; }
.webdev-highlight { background: linear-gradient(135deg, #ff5c35, #ffa500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.webdev-body { font-size: 1rem; color: #9aaac4; line-height: 1.8; margin-bottom: 1.6rem; }
.webdev-bullets { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.webdev-bullets li { font-size: .9rem; color: #c8d4e8; display: flex; align-items: flex-start; gap: .65rem; }
.webdev-bullets li::before { content: '✦'; color: #ffa500; font-size: .7rem; margin-top: .22rem; flex-shrink: 0; }
.btn-webdev { display: inline-flex; align-items: center; gap: .5rem; background: linear-gradient(135deg, #ff5c35, #ffa500); color: #fff; padding: .85rem 2rem; border-radius: 50px; font-size: 1rem; font-weight: 700; text-decoration: none; box-shadow: 0 6px 24px rgba(255,92,53,.4); transition: transform .25s, box-shadow .25s; }
.btn-webdev:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(255,92,53,.52); }
.webdev-stack { display: flex; flex-direction: column; gap: .7rem; }
.ws-row { display: flex; align-items: center; gap: .8rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: .85rem 1.2rem; transition: border-color .25s, background .25s; }
.ws-row:hover { border-color: rgba(255,92,53,.3); background: rgba(255,92,53,.05); }
.ws-ai-row { border-color: rgba(255,165,0,.2); background: rgba(255,165,0,.04); }
.ws-ai-row:hover { border-color: rgba(255,165,0,.4); background: rgba(255,165,0,.08); }
.ws-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #475569; white-space: nowrap; min-width: 58px; }
.ws-ai-label { color: #ffa500; }
.ws-pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.ws-pills span { font-size: .74rem; font-weight: 600; color: #c8d4e8; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); padding: .2rem .65rem; border-radius: 20px; }
.ws-ai-row .ws-pills span { color: #ffd480; background: rgba(255,165,0,.12); border-color: rgba(255,165,0,.25); }
.ws-build-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .3rem; }
.wsb-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: .6rem .8rem; font-size: .78rem; font-weight: 600; color: #8899bb; text-align: center; transition: border-color .2s, color .2s, background .2s; }
.wsb-item:hover { border-color: rgba(255,92,53,.3); color: #fff; background: rgba(255,92,53,.06); }
.ws-view-all { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: #475569; text-decoration: none; transition: color .2s; margin-top: .3rem; }
.ws-view-all:hover { color: #ff5c35; }
@media (max-width: 900px) { .webdev-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── WHY FANCY ── */
.why-fancy { position: relative; background: var(--white); padding: 5.5rem 6vw; overflow: hidden; }
#why-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.why-glow { position: absolute; width: 700px; height: 340px; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,92,53,.07) 0%, transparent 70%); top: -80px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.why-inner { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 2.8rem; }
.why-tag { display: inline-flex; align-items: center; gap: .45rem; background: linear-gradient(135deg,#fff3ef,#fff8f0); border: 1px solid rgba(255,92,53,.25); color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1rem; }
.why-tag::before { content: '◆'; font-size: .5rem; animation: spin-diamond 4s linear infinite; }
@keyframes spin-diamond { to { transform: rotate(360deg); } }
.why-h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; line-height: 1.25; color: var(--ink); margin-bottom: .9rem; }
.why-grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.why-sub { font-size: .95rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.why-stats { display: flex; justify-content: center; align-items: center; gap: 0; margin: 0 auto 3rem; background: var(--surface); border-radius: var(--radius); padding: 1.5rem 2rem; max-width: 700px; }
.wstat { text-align: center; flex: 1; }
.wstat-num { font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1; }
.wstat-label { font-size: .72rem; color: var(--muted); margin-top: .35rem; letter-spacing: .06em; text-transform: uppercase; }
.wstat-sep { width: 1px; height: 40px; background: #dde1ee; flex-shrink: 0; }
.why-intro-dark { columns: 2; column-gap: 3rem; column-rule: 1px solid #e0e4ef; max-width: 900px; margin: 0 auto 3.5rem; }
.why-intro-dark p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; break-inside: avoid; }
.why-intro-dark strong { color: var(--ink); font-weight: 700; }
.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.why-card-wrap { position: relative; border-radius: calc(var(--radius) + 2px); padding: 2px; background: conic-gradient(from var(--border-angle), #e8eaf2 0%, #e8eaf2 40%, rgba(255,92,53,.9) 50%, rgba(255,165,0,.9) 56%, #e8eaf2 70%); animation: wBorderSpin 4s linear infinite; }
.why-card-wrap:nth-child(2) { animation-delay: -1s; }
.why-card-wrap:nth-child(3) { animation-delay: -2s; }
.why-card-wrap:nth-child(4) { animation-delay: -3s; }
@keyframes wBorderSpin { to { --border-angle: 360deg; } }
.why-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem; height: 100%; transition: background .3s, box-shadow .3s; }
.why-card:hover { background: #fafbff; box-shadow: 0 8px 32px rgba(255,92,53,.08); }
.why-icon { font-size: 2rem; margin-bottom: 1.1rem; display: block; }
.why-card-wrap:nth-child(1) .why-icon { animation: wBounce 2s ease-in-out infinite; }
.why-card-wrap:nth-child(2) .why-icon { animation: wPulse 2s ease-in-out infinite; }
.why-card-wrap:nth-child(3) .why-icon { animation: wSwing 2.5s ease-in-out infinite; }
.why-card-wrap:nth-child(4) .why-icon { animation: wGlow 2s ease-in-out infinite; }
@keyframes wBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes wPulse  { 0%,100%{transform:scale(1)}    50%{transform:scale(1.2)} }
@keyframes wSwing  { 0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(8deg)} }
@keyframes wGlow   { 0%,100%{filter:drop-shadow(0 0 0px #ffa500)} 50%{filter:drop-shadow(0 0 10px #ffa500)} }
.why-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .65rem; line-height: 1.3; }
.why-desc  { font-size: .88rem; color: var(--muted); line-height: 1.75; }
@media (max-width: 700px) { .why-intro-dark { columns: 1; } .wstat-sep { display: none; } .why-stats { flex-wrap: wrap; gap: 1rem; } .wstat { flex: 0 0 calc(50% - .5rem); } }

/* ── SALES NARRATIVE ── */
.narrative { position: relative; background: #060c1a; padding: 7rem 6vw; overflow: hidden; }
.narrative-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,53,.18) 0%, transparent 65%); top: -100px; left: -100px; pointer-events: none; }
.narrative-glow--2 { background: radial-gradient(circle, rgba(255,165,0,.12) 0%, transparent 65%); top: auto; left: auto; bottom: -120px; right: -80px; }
.narrative-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 5rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.narrative-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; color: rgba(255,165,0,.85); margin-bottom: 1.4rem; }
.narrative-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); animation: pulse 1.8s infinite; }
.narrative-heading { font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: #fff; margin-bottom: 1.8rem; }
.narrative-highlight { background: linear-gradient(135deg, #ff5c35, #ffa500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.narrative-body { font-size: 1.02rem; color: #9aaac4; line-height: 1.85; margin-bottom: 1.2rem; }
.narrative-body em  { color: #c8d4e8; font-style: italic; }
.narrative-body strong { color: #e8edf5; font-weight: 700; }
.narrative-quote-block { position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,165,0,.25); border-left: 4px solid var(--accent2); border-radius: 0 14px 14px 0; padding: 1.6rem 1.8rem 1.4rem; margin: 1.8rem 0; }
.narrative-quote-mark { position: absolute; top: -18px; left: 16px; font-size: 5rem; line-height: 1; background: linear-gradient(135deg, #ff5c35, #ffa500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: Georgia, serif; opacity: .6; }
.narrative-quote { font-family: 'Manrope', sans-serif; font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; font-style: italic; color: #fff; line-height: 1.55; letter-spacing: -.2px; margin: 0; }
.narrative-close { font-size: 1.05rem; color: #c8d4e8; line-height: 1.75; margin-bottom: 2rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.4rem; margin-top: 1.8rem; }
.narrative-close strong { color: #fff; }
.narrative-cta { display: inline-flex; align-items: center; gap: .5rem; background: linear-gradient(135deg, #ff5c35, #ffa500); color: #fff; text-decoration: none; padding: .9rem 2.2rem; border-radius: 50px; font-size: 1rem; font-weight: 700; box-shadow: 0 8px 28px rgba(255,92,53,.4); transition: transform .25s, box-shadow .25s; letter-spacing: .2px; }
.narrative-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(255,92,53,.52); }
.narrative-ticker { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 88px; }
.ticker-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.4rem 1.6rem; transition: border-color .3s, background .3s; }
.ticker-card:hover { border-color: rgba(255,92,53,.3); background: rgba(255,92,53,.05); }
.ticker-icon { font-size: 1.4rem; margin-bottom: .5rem; }
.ticker-num { font-family: 'Manrope', sans-serif; font-size: 2.6rem; font-weight: 800; letter-spacing: -2px; background: linear-gradient(135deg, #ff5c35, #ffa500); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline; }
.ticker-suffix { font-family: 'Manrope', sans-serif; font-size: 1.4rem; font-weight: 700; color: #ffa500; display: inline; margin-left: 2px; }
.ticker-label { font-size: .82rem; color: #64748b; font-weight: 500; margin-top: .3rem; margin-bottom: .8rem; }
.ticker-bar { height: 4px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.ticker-fill { height: 100%; background: linear-gradient(90deg, #ff5c35, #ffa500); border-radius: 4px; width: 0; transition: width 1.6s cubic-bezier(.22,1,.36,1); }
.ticker-card--cta { background: linear-gradient(135deg, rgba(255,92,53,.12), rgba(255,165,0,.08)); border-color: rgba(255,92,53,.25); text-align: center; }
.ticker-cta-text { font-size: .88rem; color: #9aaac4; line-height: 1.6; margin-bottom: 1rem; }
.ticker-cta-btn { display: inline-block; background: linear-gradient(135deg, #ff5c35, #ffa500); color: #fff; text-decoration: none; padding: .7rem 1.6rem; border-radius: 50px; font-size: .88rem; font-weight: 700; box-shadow: 0 6px 20px rgba(255,92,53,.35); transition: transform .2s, box-shadow .2s; }
.ticker-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,92,53,.48); }

@media (max-width: 900px) {
  .hero { padding: 5rem 6vw 8rem; }
  .hero-grid-img { display: none; }
  .hero h1 { font-size: clamp(2.2rem,8vw,3rem); }
  .narrative-inner { grid-template-columns: 1fr; gap: 3rem; }
  .narrative-ticker { position: static; }
  .ticker-card { padding: 1.1rem 1.2rem; }
}
@media (max-width: 560px) {
  section { padding: 4rem 5vw; }
  .plan.featured { transform: none; }
  .ptab { font-size: .82rem; padding: .5rem 1.1rem; }
}
