body.service-landing {
  margin: 0;
  font-family: Jost, Arial, sans-serif;
  color: #f5f7fb;
  background: #07111f;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(54, 198, 244, .18), transparent 30%),
    radial-gradient(circle at 85% 22%, rgba(36, 214, 163, .12), transparent 26%),
    linear-gradient(180deg, #07111f, #090d20 52%, #06101d);
  overflow-x: hidden;
}

body.service-landing::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 72%);
}

.service-shell {
  width: min(1210px, calc(100% - 40px));
  margin: 0 auto;
}

.service-landing main {
  padding-top: clamp(34px, 5vw, 76px);
}

.service-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  position: relative;
  z-index: 5;
}

.service-nav img {
  max-height: 48px;
}

.service-nav a {
  color: #dfe8f7;
  text-decoration: none;
  font-weight: 600;
  margin-left: 18px;
}

.service-hero {
  padding: 72px 0 48px;
  position: relative;
}

.service-landing main.service-shell .service-hero {
  padding: 58px 34px 38px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(36,214,163,.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(54,198,244,.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 26px 90px rgba(0,0,0,.24);
}

.service-hero-premium {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.service-hero-copy {
  position: relative;
  z-index: 2;
}

.service-eyebrow {
  color: #36c6f4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-hero h1 {
  max-width: 880px;
  margin: 20px 0 22px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.07;
}

.service-lead {
  max-width: 760px;
  color: #cad5e8;
  font-size: 20px;
  line-height: 1.7;
}

.service-hero-visual {
  position: relative;
}

.service-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 8% -8% 4%;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(54, 198, 244, .28), rgba(36, 214, 163, .1) 42%, transparent 70%);
  filter: blur(18px);
}

.service-hero-visual picture {
  position: relative;
  display: block;
}

.service-hero-visual img {
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 100px rgba(0,0,0,.46);
  animation: serviceFloat 8s ease-in-out infinite;
}

.service-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.service-proof-strip div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}

.service-proof-strip strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.service-proof-strip span {
  color: #b8c7dc;
  font-size: 13px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  color: #06101d;
  background: #36c6f4;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(54, 198, 244, .24);
}

.service-btn.secondary {
  color: #f5f7fb;
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: clamp(54px, 6vw, 82px) auto clamp(74px, 7vw, 108px);
}

.service-showcase-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 8%, rgba(54,198,244,.18), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-showcase-card.has-image {
  padding: 0;
  min-height: 0;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(54,198,244,.38);
  box-shadow: 0 32px 95px rgba(54,198,244,.13);
}

.showcase-image {
  position: relative;
  z-index: 1;
  height: clamp(220px, 18vw, 275px);
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.service-showcase-card.has-image:hover .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  position: relative;
  z-index: 1;
  padding: 26px 28px 30px;
}

.service-showcase-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,198,244,.28), transparent 68%);
}

.service-showcase-card.is-large {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/mobile-app-development-hero.webp") center/cover;
}

.service-showcase-card.is-web {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/web-ecommerce-suite.webp") center/cover;
}

.service-showcase-card.is-game,
.service-showcase-card.is-esports {
  background:
    linear-gradient(180deg, rgba(5,10,28,.22), rgba(5,10,28,.92)),
    url("../assets/images/services/game-development-suite.webp") center/cover;
}

.service-showcase-card.is-ai {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/ai-chatbot-suite.webp") center/cover;
}

.service-showcase-card.is-astrology {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/astrology-app-suite.webp") center/cover;
}

.service-showcase-card.is-fintech {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/fintech-trading-suite.webp") center/cover;
}

.service-showcase-card.is-saas {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/saas-custom-software-suite.webp") center/cover;
}

.service-showcase-card.is-seo {
  background:
    linear-gradient(180deg, rgba(5,10,28,.2), rgba(5,10,28,.9)),
    url("../assets/images/services/seo-digital-growth-suite.webp") center/cover;
}

.showcase-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: #06101d;
  background: linear-gradient(135deg, #36c6f4, #24d6a3);
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 14px 34px rgba(54,198,244,.18);
}

.service-showcase-card h2,
.service-showcase-card p {
  position: relative;
  z-index: 1;
}

.service-showcase-card h2 {
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 12px;
}

.service-showcase-card p {
  color: #c8d4e6;
  line-height: 1.72;
}

.service-section-heading {
  max-width: 800px;
  margin-bottom: 24px;
}

.service-section-heading h2 {
  color: #fff;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  margin: 12px 0;
}

.service-section-heading p {
  color: #c8d4e6;
  font-size: 18px;
  line-height: 1.7;
}

.app-blueprint-section {
  padding: 42px 0;
}

.app-blueprint {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.blueprint-column {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.blueprint-column.is-center {
  background: linear-gradient(145deg, rgba(54,198,244,.14), rgba(36,214,163,.08));
  transform: translateY(-14px);
}

.blueprint-column h3 {
  color: #fff;
  font-size: 24px;
}

.blueprint-column ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.blueprint-column li {
  color: #c8d4e6;
  line-height: 1.75;
  margin-bottom: 8px;
}

.premium-faq {
  padding-top: 64px;
}

.service-final-cta {
  margin-top: 42px;
  padding: 44px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(54,198,244,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.service-final-cta h2 {
  color: #fff;
  font-size: clamp(30px, 5vw, 52px);
  max-width: 820px;
}

.service-final-cta p {
  color: #c8d4e6;
  max-width: 720px;
  line-height: 1.72;
}

.service-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 14%, rgba(54,198,244,.13), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 18px 55px rgba(0,0,0,.16);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  animation: serviceRise .7s cubic-bezier(.2, .8, .2, 1) both;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 198, 244, .45);
  background: rgba(54, 198, 244, .08);
  box-shadow: 0 24px 70px rgba(54,198,244,.12);
}

.service-card h2,
.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.service-card p,
.service-card li,
.service-section p,
.service-section li {
  color: #c8d4e6;
  line-height: 1.72;
}

.service-section {
  padding: 30px 0;
}

.service-landing main.service-shell .service-section {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.service-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  padding-left: 18px;
}

.service-faq details {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
}

.service-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.service-footer {
  margin-top: 50px;
  margin-bottom: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(54,198,244,.13), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  color: #d7e4f4;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
  text-align: center;
}

.service-footer strong {
  color: #fff;
}

@keyframes serviceRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    animation: none;
    transition: none;
  }

  .service-hero-visual img {
    animation: none;
  }
}

@media (max-width: 800px) {
  .service-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-nav a {
    margin-left: 0;
    margin-right: 14px;
  }

  .service-grid,
  .service-hero-premium,
  .service-showcase-grid,
  .app-blueprint,
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-hero-premium {
    min-height: auto;
  }

  .service-proof-strip {
    grid-template-columns: 1fr;
  }

  .blueprint-column.is-center {
    transform: none;
  }

  .service-final-cta {
    padding: 26px;
  }
}
