body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  color: #0f172a;
}
.gradient-text {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.nav-blur {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
}
.btn-primary {
  background: #0f172a;
  color: white;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #334155;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
}
.card-hover {
  transition: all 0.4s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}
.step-number {
  background: #0f172a;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.portfolio-img {
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
/* Mobile menu animation */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    margin-top 0.35s ease,
    padding-top 0.35s ease,
    padding-bottom 0.35s ease;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
}
#mobile-menu.open {
  max-height: 300px;
  opacity: 1;
  margin-top: 1rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  border-top-color: rgb(243 244 246);
}
/* Overlay */
#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 40;
  pointer-events: none;
  transition: background 0.3s ease;
}
#menu-overlay.active {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

/* ============ AJOUTS ============ */

/* Mockup navigateur pour le portfolio */
.browser-mockup {
  background: #f1f5f9;
  border-radius: 12px 12px 0 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e2e8f0;
}
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* === HERO refonte === */
.text-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-accent::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.06em;
  height: 0.22em;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.18) 0%,
    rgba(79, 70, 229, 0.18) 100%
  );
  border-radius: 4px;
  z-index: -1;
}

.hero-mockups {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-width: 560px;
  margin-inline: auto;
}
.hero-mockup {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 30px 60px -25px rgba(15, 23, 42, 0.22),
    0 12px 25px -10px rgba(15, 23, 42, 0.1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-mockup .browser-mockup {
  border-radius: 18px 18px 0 0;
}
.hero-mockup-back {
  width: 78%;
  top: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 1;
}
.hero-mockup-front {
  width: 78%;
  bottom: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}
.hero-mockups:hover .hero-mockup-back {
  transform: rotate(4deg) translate(4px, -8px);
}
.hero-mockups:hover .hero-mockup-front {
  transform: rotate(-4deg) translate(-4px, -8px);
}
.hero-mockup-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Portfolio cartes larges */
.portfolio-card-lg .portfolio-img-wrap {
  height: 320px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .portfolio-card-lg .portfolio-img-wrap {
    height: 220px;
  }
}

/* Cards engagements */
.commit-card {
  position: relative;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  transition: all 0.3s ease;
}
.commit-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 18px 35px -18px rgba(15, 23, 42, 0.18);
}
.commit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.commit-card:hover .commit-icon {
  transform: scale(1.08) rotate(-4deg);
}
.commit-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.commit-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
}

/* Cards secteurs (refonte) */
.sector-pro {
  position: relative;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.sector-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.04) 0%,
    rgba(79, 70, 229, 0.04) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.sector-pro:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -20px rgba(15, 23, 42, 0.22);
}
.sector-pro:hover::before {
  opacity: 1;
}
.sector-pro-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #2563eb;
  transition: all 0.35s ease;
}
.sector-pro:hover .sector-pro-icon {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  color: #ffffff;
  transform: scale(1.05);
}
.sector-pro-title {
  position: relative;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.45rem;
}
.sector-pro-desc {
  position: relative;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* Pied portfolio CTA */
.portfolio-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}
.portfolio-url {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  min-width: 0;
}
.portfolio-url span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.55rem 1rem 0.55rem 1.1rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: #ffffff;
  background: #0f172a;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.portfolio-card:hover .portfolio-cta {
  background: #2563eb;
  box-shadow: 0 10px 25px -10px rgba(37, 99, 235, 0.5);
}
.portfolio-cta i {
  transition: transform 0.3s ease;
}
.portfolio-card:hover .portfolio-cta i {
  transform: translate(2px, -2px);
}

/* Pricing card (layout simple, pas de hiérarchie) */

/* Accordéon FAQ */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  font-family: inherit;
}
.faq-question:hover {
  color: #2563eb;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  color: #64748b;
  line-height: 1.7;
}

/* Form refonte */
.field-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.01em;
}
.field-required {
  color: #dc2626;
  font-weight: 700;
  margin-left: 2px;
}
.field-input-wrap {
  position: relative;
}
.field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 1;
}
.field-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f8fafc;
  color: #0f172a;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field-input::placeholder {
  color: #94a3b8;
}
.field-input:hover {
  border-color: #cbd5e1;
}
.field-input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.field-input-wrap:focus-within .field-icon {
  color: #2563eb;
}
.field-textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.field-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.submit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    background 0.4s ease;
}
.submit-cta:hover {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37, 99, 235, 0.5);
}
.submit-cta:active {
  transform: translateY(0);
}
.submit-cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* === Bento services === */
.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 1.85rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -22px rgba(15, 23, 42, 0.16);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  transition: transform 0.3s ease;
}
.service-icon i {
  width: 22px;
  height: 22px;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
}
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
}
.service-foot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}
.service-foot i {
  width: 14px;
  height: 14px;
  color: #2563eb;
}

/* Featured (dark) card */
.service-card-feature {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: #1e293b;
  color: #ffffff;
  padding: 2.25rem;
  position: relative;
}
.service-card-feature::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.45) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}
.service-card-feature::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.3) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}
.service-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.service-tag-light {
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.2);
}
.service-feature-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.15;
  position: relative;
}
.service-feature-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 38ch;
  position: relative;
}
.service-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.25rem;
  margin-bottom: 1.85rem;
  position: relative;
}
.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #e2e8f0;
}
.service-feature-list li i {
  width: 16px;
  height: 16px;
  color: #4ade80;
  flex-shrink: 0;
}

/* Mockup visual inside featured card */
.service-mockup {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  margin-top: auto;
  box-shadow:
    0 25px 50px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 1;
}
.service-mockup .mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.service-mockup .mockup-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.service-mockup .url-pill {
  margin-left: 8px;
  padding: 3px 12px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 500;
}
.service-mockup .mockup-body {
  padding: 16px 18px 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-mockup .mockup-text {
  flex: 1;
}
.service-mockup .mockup-h {
  height: 12px;
  width: 75%;
  border-radius: 4px;
  background: #0f172a;
  margin-bottom: 8px;
}
.service-mockup .mockup-l {
  height: 7px;
  border-radius: 4px;
  background: #e2e8f0;
  margin-bottom: 6px;
}
.service-mockup .mockup-l.short {
  width: 55%;
}
.service-mockup .mockup-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 999px;
}
.service-mockup .mockup-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.service-mockup .mockup-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(37, 99, 235, 0.3),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(79, 70, 229, 0.3),
      transparent 50%
    );
}

/* Mini SERP visual */
.service-serp {
  margin-top: 1.1rem;
  padding: 0.85rem 0.95rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}
.serp-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
}
.serp-search i {
  width: 12px;
  height: 12px;
  color: #94a3b8;
}
.serp-search .typed {
  color: #0f172a;
  font-weight: 500;
}
.serp-result .serp-url {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #047857;
  margin-bottom: 0.18rem;
}
.serp-result .serp-url::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  flex-shrink: 0;
}
.serp-result .serp-title {
  font-size: 0.85rem;
  color: #1d4ed8;
  font-weight: 600;
  line-height: 1.3;
}
.serp-result .serp-meta {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 0.2rem;
}

/* Before / after visual : 2 mini-mockups */
.service-beforeafter {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.55rem;
}
.service-beforeafter > i {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  align-self: center;
}
.ba-old, .ba-new {
  border-radius: 8px;
  overflow: hidden;
  height: 92px;
  display: flex;
  flex-direction: column;
  font-size: 5px;
  line-height: 1;
  position: relative;
}
/* === MOCKUP "AVANT" === */
.ba-old {
  background: #f5e6c8;
  border: 1px solid #d4c099;
  font-family: "Times New Roman", Times, serif;
  color: #4a3818;
}
.ba-old-bar {
  background: #c4a675;
  color: #fff8e8;
  padding: 4px 5px;
  font-size: 4.5px;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: uppercase;
}
.ba-old-body {
  flex: 1;
  padding: 6px 5px 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ba-old-h {
  font-size: 7px;
  font-weight: bold;
  text-decoration: underline;
  color: #8b3030;
  margin-bottom: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ba-old-l {
  height: 2px;
  background: #b59866;
  margin: 1.5px auto;
  width: 75%;
  border-radius: 0;
}
.ba-old-cta {
  display: inline-block;
  margin-top: 5px;
  padding: 2px 5px;
  background: #d63333;
  color: #ffe34a;
  font-size: 5px;
  font-weight: bold;
  font-family: "Comic Sans MS", "Times New Roman", serif;
  border-radius: 1px;
  text-transform: uppercase;
  border: 1px solid #8b2020;
  letter-spacing: 0.3px;
}
/* === MOCKUP "APRÈS" === */
.ba-new {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.1);
}
.ba-new-bar {
  background: #f1f5f9;
  padding: 4px 5px;
  display: flex;
  gap: 2.5px;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}
.ba-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.ba-dot.ba-r {
  background: #fca5a5;
}
.ba-dot.ba-y {
  background: #fde047;
}
.ba-dot.ba-g {
  background: #86efac;
}
.ba-new-url {
  flex: 1;
  margin-left: 4px;
  padding: 1.5px 5px;
  background: #ffffff;
  border-radius: 5px;
  font-size: 4.5px;
  color: #64748b;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.1px;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.ba-new-body {
  flex: 1;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 60%, #eff6ff 100%);
}
.ba-new-side {
  flex: 1;
  min-width: 0;
}
.ba-new-h.tiny {
  height: 3px;
  width: 35%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 999px;
  margin-bottom: 4px;
}
.ba-new-h {
  height: 6px;
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  border-radius: 2px;
  width: 85%;
  margin-bottom: 3px;
}
.ba-new-l {
  height: 2px;
  background: #cbd5e1;
  border-radius: 1.5px;
  margin-bottom: 2px;
}
.ba-new-l.short {
  width: 55%;
}
.ba-new-cta {
  display: inline-block;
  width: 30px;
  height: 6.5px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 999px;
  margin-top: 4px;
  box-shadow: 0 2px 4px -1px rgba(37, 99, 235, 0.4);
}
.ba-new-img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgba(99, 102, 241, 0.2);
}
.ba-new-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 25% 30%,
      rgba(37, 99, 235, 0.55) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(79, 70, 229, 0.55) 0%,
      transparent 45%
    );
}
.ba-tag-old, .ba-tag-new {
  position: absolute;
  bottom: 4px;
  right: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 4px;
}
.ba-tag-old {
  background: rgba(255, 255, 255, 0.6);
  color: #94a3b8;
}
.ba-tag-new {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
}

/* Hosting visual (mini server) */
.service-host-vis {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}
.service-host-vis .host-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  flex-shrink: 0;
}
.service-host-vis .host-bars span {
  width: 6px;
  background: linear-gradient(180deg, #2563eb, #4f46e5);
  border-radius: 2px;
}
.service-host-vis .host-meta {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.4;
}
.service-host-vis .host-meta strong {
  display: block;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Maintenance pulse visual */
.service-pulse {
  margin-top: 1.1rem;
  position: relative;
  padding: 0.85rem 0.95rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.service-pulse .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  position: relative;
  flex-shrink: 0;
}
.service-pulse .pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.service-pulse .pulse-meta {
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
}
.service-pulse .pulse-meta span {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .service-card-feature {
    padding: 1.85rem;
  }
  .service-feature-title {
    font-size: 1.5rem;
  }
  .service-feature-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .service-mockup .mockup-thumb {
    width: 56px;
    height: 56px;
  }
}

/* Landing page mini-mockup (bento card) */
.landing-mockup {
  margin-top: 1rem;
  padding: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.landing-mockup-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #ede9fe 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.landing-mockup-h {
  height: 6px;
  width: 65%;
  background: #0f172a;
  border-radius: 2px;
  margin: 0 auto 4px;
}
.landing-mockup-l {
  height: 2.5px;
  width: 45%;
  background: #94a3b8;
  border-radius: 1.5px;
  margin: 0 auto 7px;
}
.landing-mockup-cta {
  display: inline-block;
  padding: 3px 8px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 5px -1px rgba(37, 99, 235, 0.4);
}
.landing-mockup-row {
  display: flex;
  gap: 4px;
  padding: 0 2px;
}
.landing-mockup-row span {
  flex: 1;
  height: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}
