:root {
  --blue: #405cf5;
  --blue-dark: #2945df;
  --blue-soft: #eef2ff;
  --text: #16181d;
  --muted: #7b7d86;
  --line: #e4e5ea;
  --surface: #ffffff;
  --background: #f7f7f9;
  --green: #20b15a;
  --shadow: 0 14px 35px rgba(30, 35, 60, 0.09);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #d9d8d3;
  font-family:
    "Noto Sans Bengali",
    "Hind Siliguri",
    "SolaimanLipi",
    Arial,
    sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  position: relative;
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: calc(90px + var(--safe-bottom));
  background: var(--background);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.2);
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 63px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--line);
}

.header-icon,
.profile-btn {
  width: 48px;
  height: 48px;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
}

.header-icon {
  gap: 5px;
  align-content: center;
}

.header-icon span {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #2d3037;
}

.profile-btn svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #1f2937;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-logo {
  position: relative;
  justify-self: center;
  margin-left: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.04em;
}

.logo-digital {
  color: #4161d9;
  font-size: 17px;
}

.logo-boost {
  color: #ef4c9b;
  font-size: 21px;
}

.logo-rocket {
  position: absolute;
  top: -7px;
  right: -22px;
  font-size: 20px;
  transform: rotate(-8deg);
}

.search-area {
  position: sticky;
  top: 63px;
  z-index: 35;
  padding: 9px 18px;
  background: var(--blue);
}

.search-box {
  height: 43px;
  display: grid;
  grid-template-columns: 1fr 45px;
  overflow: hidden;
  border-radius: 24px;
  background: white;
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 17px;
  color: var(--text);
  background: transparent;
  font-size: 14px;
}

.search-box button {
  width: 43px;
  height: 43px;
  margin-right: 1px;
  align-self: center;
  justify-self: end;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: #1675e8;
}

.search-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

main {
  padding-bottom: 25px;
}

.banner-section {
  padding: 0 18px;
  background: white;
}

.app-shell.search-active .banner-section {
  display: none;
}

.app-shell.search-active .services-section {
  padding-top: 22px;
}

.banner-slider {
  position: relative;
  min-height: 166px;
  overflow: hidden;
}

.promo-banner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 8px;
  padding: 18px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(25px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}

.promo-banner.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.banner-ai {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.8), transparent 22%),
    linear-gradient(125deg, #e3fbff, #cfd4ff);
}

.banner-followers {
  color: white;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.16), transparent 25%),
    linear-gradient(125deg, #121633, #4338ca);
}

.banner-watch {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.6), transparent 24%),
    linear-gradient(125deg, #fff2ce, #ffba77);
}

.banner-label {
  color: #7657d8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.banner-followers .banner-label {
  color: #c4b5fd;
}

.banner-copy h1 {
  margin: 5px 0 4px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.banner-copy p {
  margin: 0 0 10px;
  color: #5f6471;
  font-size: 10px;
  line-height: 1.4;
}

.banner-followers .banner-copy p {
  color: #d6d6e8;
}

.banner-copy button {
  min-height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
}

.banner-followers .banner-copy button {
  color: #312e81;
  background: white;
}

.banner-art {
  position: relative;
  min-height: 128px;
  display: grid;
  place-items: center;
}

.ai-window {
  width: 134px;
  height: 100px;
  padding: 10px;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #374151;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 25px rgba(62, 83, 170, .18);
}

.window-dot {
  position: absolute;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #93c5fd;
}

.window-dot:nth-child(1) {
  left: 19px;
}

.window-dot:nth-child(2) {
  left: 28px;
}

.window-dot:nth-child(3) {
  left: 37px;
}

.ai-spark {
  color: #6d5ce8;
  font-size: 27px;
}

.ai-window strong {
  margin-top: 3px;
  font-size: 14px;
}

.ai-window small {
  margin-top: 2px;
  color: #8a8e9b;
  font-size: 7px;
}

.rocket {
  position: absolute;
  right: -2px;
  top: 2px;
  font-size: 35px;
  transform: rotate(-12deg);
}

.social-orbit {
  position: relative;
  width: 124px;
  height: 124px;
}

.orbit-main,
.orbit-icon {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}

.orbit-main {
  inset: 31px;
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  font-size: 29px;
}

.orbit-icon {
  width: 42px;
  height: 42px;
}

.orbit-icon.fb {
  top: 0;
  left: 3px;
  background: #1877f2;
  font-size: 24px;
}

.orbit-icon.tt {
  right: 0;
  top: 25px;
  background: #111827;
  font-size: 20px;
}

.orbit-icon.ig {
  bottom: 0;
  left: 5px;
  background: linear-gradient(145deg, #f59e0b, #ec4899, #7c3aed);
  font-size: 25px;
}

.video-card {
  width: 135px;
  height: 105px;
  padding: 14px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 0 12px 25px rgba(185, 103, 32, .16);
}

.play-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #f97316;
  font-size: 19px;
}

.watch-line {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #fee2c6;
}

.watch-line span {
  width: 68%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #f97316;
}

.video-card small {
  color: #8b5e34;
  font-size: 9px;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 8px 0 12px;
}

.slider-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c6cad4;
  transition: width .2s ease;
}

.slider-dots button.active {
  width: 20px;
  background: var(--blue);
}

.category-section,
.services-section {
  padding: 22px 18px 0;
  scroll-margin-top: 120px;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.section-title-row span {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.section-title-row h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.section-title-row > button {
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.category-card {
  min-width: 0;
  padding: 5px 5px 12px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  text-align: center;
}

.category-card:nth-child(2n) {
  border-right: 0;
}

.category-card:nth-last-child(-n+2) {
  border-bottom: 0;
}

.category-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.category-image {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 27px;
}

.category-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.category-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: .015em;
}

.category-card > span {
  color: var(--muted);
  font-size: 13px;
}

.services-section {
  padding-bottom: 20px;
}

.filter-button {
  min-height: 34px;
  padding: 0 9px !important;
  border: 1px solid var(--line) !important;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #42444b !important;
  background: white !important;
}

.filter-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.active-filter {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 10px;
  font-weight: 800;
}

.service-grid {
  display: block;
}

.platform-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.platform-card {
  overflow: hidden;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 7px 22px rgba(30, 38, 70, .06);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(30, 38, 70, .11);
}

.platform-card-image {
  position: relative;
  aspect-ratio: 1.28 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--service-bg, #eff6ff);
}

.platform-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.platform-card:hover .platform-card-image img {
  transform: scale(1.04);
}

.platform-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .03em;
}

.platform-price-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 4px 9px;
  border-radius: 8px;
  color: white;
  background: rgba(16, 24, 40, 0.88);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 800;
}

.platform-card-content {
  padding: 13px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.platform-card-content h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
}

.platform-subtitle {
  margin: 0 0 10px;
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

.platform-packages-preview {
  margin: 0 0 12px;
  padding: 7px 9px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-packages-preview span {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
}

.platform-packages-preview small {
  font-size: 9.5px;
  color: #94a3b8;
}

.platform-open-btn {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--blue);
  font-size: 11.5px;
  font-weight: 800;
  transition: background .2s ease;
}

.platform-open-btn:hover {
  background: var(--blue-dark);
}

/* Package Select Dropdown in Modal */
#packageSelectLabel {
  margin-bottom: 12px;
  color: #1e293b;
  font-size: 12.5px;
  font-weight: 800;
}

#packageSelect {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}

#packageSelect:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(64, 92, 245, .15);
}

.pkg-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #cbd5e1;
}

.pkg-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.pkg-price-badge {
  padding: 4px 10px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.platform-modal-desc {
  margin: 4px 0 0;
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 7px 18px rgba(34, 39, 69, .05);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:active {
  transform: scale(0.985);
}

.service-image {
  position: relative;
  aspect-ratio: 1.25 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--service-bg, #eff6ff);
}

.service-image svg {
  width: 86%;
  height: 86%;
}

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

.service-card:hover .service-image > img {
  transform: scale(1.035);
}

.service-label {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #3f4551;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.95);
  font-size: 8px;
  font-weight: 900;
}

.service-price-badge {
  position: absolute;
  z-index: 1;
  bottom: 8px;
  right: 8px;
  padding: 3px 8px;
  border-radius: 8px;
  color: white;
  background: rgba(16, 24, 40, 0.82);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 800;
}

.service-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.35;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 35px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.service-features-list li {
  font-size: 10.5px;
  color: #4b5563;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.service-features-list .feat-bullet {
  color: var(--blue);
  font-weight: bold;
}

.service-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}

.service-price-tag {
  display: flex;
  flex-direction: column;
}

.service-price-tag small {
  font-size: 9px;
  color: #9ca3af;
  line-height: 1;
}

.service-price-tag strong {
  font-size: 14px;
  color: var(--blue);
  font-weight: 800;
}

.service-order-btn {
  padding: 6px 14px;
  min-height: 32px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--blue);
  font-size: 11px;
  font-weight: 800;
  transition: background .2s ease;
}

.service-order-btn:hover {
  background: var(--blue-dark);
}

/* Order Sheet Details Custom Styles */
.selected-service-details {
  display: flex;
  flex-direction: column;
}

.category-tag {
  font-size: 10px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.order-price-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 14px;
  font-weight: 800;
}

.service-description-box {
  margin-top: 15px;
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.service-main-desc {
  margin: 0 0 10px;
  font-size: 12.5px;
  color: #334155;
  line-height: 1.5;
}

.service-detail-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-detail-bullets li {
  font-size: 12px;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;

}

.bullet-check {
  color: var(--green);
  font-weight: bold;
}

.service-need-text {
  margin: 0;
  font-size: 11px;
  color: #64748b;
}

.empty-state {
  padding: 35px 20px;
  text-align: center;
  color: var(--muted);
}

.empty-state div {
  font-size: 35px;
}

.empty-state h3 {
  margin: 10px 0 5px;
  color: var(--text);
}

.empty-state p {
  margin: 0;
  font-size: 12px;
}

.bottom-nav {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: calc(10px + var(--safe-bottom));
  width: min(calc(100% - 24px), 496px);
  min-height: 64px;
  padding: 5px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(217, 218, 224, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 38px rgba(25, 29, 48, .16);
  backdrop-filter: blur(18px) saturate(170%);
  transform: translateX(-50%);
}

.nav-item {
  position: relative;
  min-width: 0;
  border: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  color: #34363d;
  background: transparent;
}

.nav-icon {
  min-height: 25px;
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
}

.nav-icon-svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-whatsapp {
  color: #159a50;
}

.nav-whatsapp .whatsapp-svg {
  fill: currentColor;
  stroke: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 20px;
  height: 1.8px;
  display: block;
  border-radius: 99px;
  background: #35373d;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.nav-item small {
  font-size: 10px;
}

.nav-item.active {
  color: var(--blue);
}

.nav-badge {
  position: absolute;
  top: 1px;
  left: calc(50% + 7px);
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: #1976ee;
  border: 1.5px solid white;
  font-size: 8px;
  font-weight: 800;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  background: rgba(15, 18, 29, .47);
  backdrop-filter: blur(2px);
  transition: .23s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  left: max(0px, calc(50% - 260px));
  width: min(84%, 365px);
  height: 100dvh;
  padding: 18px;
  background: white;
  box-shadow: 18px 0 45px rgba(20, 24, 40, .2);
  transform: translateX(-105%);
  transition: transform .26s ease;
}

.side-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-logo {
  justify-self: auto;
  margin-left: 8px;
}

.drawer-close,
.sheet-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: white;
  font-size: 23px;
}

.drawer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 15px;
  background: var(--blue-soft);
}

.drawer-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
}

.drawer-profile strong,
.drawer-profile span {
  display: block;
}

.drawer-profile span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.drawer-links {
  display: grid;
  gap: 5px;
}

.drawer-links button {
  min-height: 48px;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  color: #2c2f38;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.drawer-links button:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.order-sheet,
.filter-sheet {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 0;
  width: min(100%, 520px);
  max-height: 93dvh;
  overflow-y: auto;
  padding: 22px 20px calc(24px + var(--safe-bottom));
  border-radius: 26px 26px 0 0;
  background: white;
  box-shadow: 0 -20px 50px rgba(20, 24, 40, .18);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 105%);
  transition: transform .27s ease, opacity .2s ease, visibility .27s;
}

.order-sheet.active,
.filter-sheet.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sheet-handle {
  width: 45px;
  height: 5px;
  margin: -10px auto 18px;
  border-radius: 999px;
  background: #d1d4dc;
}

.order-sheet .sheet-close,
.filter-sheet .sheet-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.selected-service-header {
  padding-right: 48px;
  margin-bottom: 20px;
}

.selected-service-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.selected-service-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--service-bg, #eff6ff);
}

.selected-service-icon svg {
  width: 100%;
  height: 100%;
}

.selected-service-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.selected-service-header span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-service-header h2 {
  margin: 4px 0 3px;
  font-size: 22px;
}

.selected-service-header p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: #30333b;
  font-size: 12px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: #fbfbfd;
}

input {
  min-height: 47px;
  padding: 0 13px;
}

textarea {
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(64, 92, 245, .09);
}

.whatsapp-order-btn {
  min-height: 51px;
  border: 0;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  background: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.wa-svg-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

.wa-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: white;
}

.order-note {
  margin: -1px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
}

.filter-sheet h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-options button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #41444d;
  background: white;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

.filter-options button.active {
  color: var(--blue);
  background: var(--blue-soft);
  border-color: #c7d2fe;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: calc(80px + var(--safe-bottom));
  max-width: calc(100% - 28px);
  padding: 10px 14px;
  border-radius: 11px;
  color: white;
  background: #252833;
  box-shadow: 0 12px 25px rgba(0,0,0,.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .2s ease;
  font-size: 11px;
  font-weight: 700;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (min-width: 521px) {
  .side-drawer {
    left: calc(50% - 260px);
  }
}

@media (min-width: 768px) {
  body {
    background: #eef0f6;
  }

  .app-shell {
    width: min(calc(100% - 40px), 1200px);
    min-height: calc(100vh - 40px);
    margin: 20px auto;
    padding-bottom: 52px;
    overflow: hidden;
    border: 1px solid rgba(218, 221, 232, .9);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(24, 30, 54, .12);
  }

  .app-header {
    height: 76px;
    padding: 0 32px;
  }

  .app-logo {
    justify-self: start;
  }

  .logo-digital {
    font-size: 20px;
  }

  .logo-boost {
    font-size: 25px;
  }

  .search-area {
    top: 76px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
  }

  .search-box {
    width: min(100%, 600px);
    height: 48px;
    margin-inline: auto;
    border: 1px solid #dce2ff;
    background: #f8f9ff;
    box-shadow: 0 7px 22px rgba(49, 62, 130, .07);
  }

  .search-box button {
    width: 46px;
    height: 46px;
  }

  .banner-section {
    padding: 28px 40px 0;
  }

  .banner-slider {
    min-height: 300px;
    overflow: hidden;
    border-radius: 24px;
  }

  .promo-banner {
    grid-template-columns: 1.15fr .85fr;
    padding: 42px 54px;
  }

  .banner-copy h1 {
    max-width: 560px;
    margin: 9px 0 10px;
    font-size: clamp(36px, 4vw, 54px);
  }

  .banner-copy p {
    max-width: 520px;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .banner-label {
    font-size: 13px;
  }

  .banner-copy button {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .banner-art {
    min-height: 220px;
    transform: scale(1.35);
  }

  .slider-dots {
    padding: 12px 0 2px;
  }

  .services-section {
    padding: 42px 40px 30px;
    scroll-margin-top: 145px;
  }

  .section-title-row {
    margin-bottom: 22px;
  }

  .section-title-row span {
    font-size: 12px;
  }

  .section-title-row h2 {
    font-size: 30px;
  }

  .platform-main-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card {
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(34, 39, 69, .07);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(34, 39, 69, .12);
  }

  .service-content {
    padding: 18px;
  }

  .service-content h3 {
    min-height: 0;
    font-size: 16px;
  }

  .service-content p {
    min-height: 66px;
    font-size: 12px;
  }

  .service-meta {
    font-size: 11px;
  }

  .service-order-btn {
    min-height: 44px;
    border-radius: 12px;
    font-size: 13px;
  }

  .bottom-nav {
    position: absolute;
    top: 12px;
    right: 32px;
    bottom: auto;
    left: auto;
    width: 330px;
    min-height: 52px;
    border-radius: 17px;
    transform: none;
  }

  .nav-item {
    grid-auto-flow: column;
    justify-content: center;
    gap: 7px;
    border-radius: 12px;
  }

  .nav-item:hover {
    background: var(--blue-soft);
  }

  .nav-item small {
    font-size: 12px;
    font-weight: 700;
  }

  .order-sheet {
    bottom: 24px;
    border-radius: 26px;
  }

  .toast {
    bottom: 30px;
  }
}

@media (min-width: 1080px) {
  .platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 370px) {
  .banner-copy h1 {
    font-size: 21px;
  }

  .service-grid {
    gap: 7px;
  }

  .service-content {
    padding: 9px;
  }

  .service-content h3 {
    font-size: 12px;
  }

  .category-card strong {
    font-size: 12px;
  }
}

/* Dedicated Product Page Styles */
.product-page-section {
  padding: 16px 18px 30px;
}

.back-to-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #334155;
  background: white;
  font-size: 12px;
  font-weight: 800;
  transition: all .2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .03);
}

.back-to-home-btn:hover {
  color: var(--blue);
  border-color: #cbd5e1;
  background: #f8fafc;
}

.product-page-card {
  overflow: hidden;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(20, 26, 50, .08);
}

.product-hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  background: var(--hero-bg, #1877f2);
  overflow: hidden;
}

.product-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .04em;
}

.product-hero-info {
  padding: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.product-page-title {
  margin: 4px 0 2px;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}

.product-page-subtitle {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.product-page-desc {
  margin: 0;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
}

.product-order-container {
  padding: 18px;
}

.form-group-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  color: #1e293b;
  font-size: 12.5px;
  font-weight: 800;
}

.pkg-selection-section {
  margin-bottom: 16px;
}

.pkg-options-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}

.pkg-option-card {
  position: relative;
  padding: 13px 15px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .02);
}

.pkg-option-card:hover {
  border-color: #93c5fd;
  background: #f8fafc;
}

.pkg-option-card.active {
  border-color: var(--blue);
  background: #eff6ff;
  box-shadow: 0 4px 14px rgba(64, 92, 245, .15);
}

.pkg-option-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 28px;
}

.pkg-option-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.pkg-option-card.active .pkg-option-title {
  color: var(--blue);
}

.pkg-option-price {
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
}

.pkg-option-card.active .pkg-option-price {
  color: #1e293b;
}

.pkg-option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cbd5e1;
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  transition: all .2s ease;
  flex-shrink: 0;
}

.pkg-option-card.active .pkg-option-check {
  background: var(--blue);
}

/* Multi-Selector Configurator & Budget Calculator */
.calculator-configurator {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-step-label {
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-pill {
  padding: 8px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
}

.calc-pill:hover {
  border-color: #93c5fd;
  background: #f8fafc;
  color: var(--blue);
}

.calc-pill.active {
  border-color: var(--blue);
  background: #eff6ff;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(64, 92, 245, .16);
}

.simple-service-info-card {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.simple-service-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
}

.simple-notice-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px fill #bfdbfe;
  color: #1e40af;
  font-size: 12.5px;
  line-height: 1.5;
}

.budget-calculator-card {
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .18);
}

.calc-card-header {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 800;
}

.calc-total-badge {
  padding: 5px 13px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 2px 8px rgba(34, 197, 94, .35);
}

.calc-card-body {
  padding: 18px;
}

.calc-summary-title {
  font-size: 15px;
  font-weight: 900;
  color: #60a5fa;
  margin-bottom: 8px;
}

.calc-summary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.calc-summary-row strong {
  color: #ffffff;
}

.calc-card-body .service-detail-bullets li {
  color: #e2e8f0;
  font-size: 12px;
  line-height: 1.5;
}

.calc-card-body .service-detail-bullets .bullet-check {
  color: #4ade80;
  font-weight: 900;
}

.calc-card-body .service-need-text {
  color: #cbd5e1;
  font-size: 12px;
}

.calc-card-body .service-need-text strong {
  color: #60a5fa;
}

.mt-2 {
  margin-top: 8px;
}

.product-page-wa-btn {
  width: 100%;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .product-page-section {
    padding: 30px 40px 40px;
  }

  .product-hero-banner {
    aspect-ratio: 3.2 / 1;
  }

  .product-hero-info {
    padding: 28px;
  }

  .product-page-title {
    font-size: 28px;
  }

  .product-order-container {
    padding: 28px;
  }
}

