:root {
  --ink: #04070b;
  --midnight: #071522;
  --text: #243443;
  --muted: #6e7e8c;
  --line: #d8e5ee;
  --blue: #1599df;
  --blue-deep: #006ca8;
  --blue-soft: #edf8ff;
  --white: #fff;
  --green: #20c766;
  --red: #d51c27;
  --shadow: 0 18px 48px rgba(3, 15, 26, 0.12);
  --gloss-shadow: 0 30px 86px rgba(0, 118, 188, 0.26);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #04070b;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(7, 21, 34, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(1.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.brand img,
footer img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid rgba(0, 140, 207, 0.34);
  border-radius: 50%;
  background: #030609;
  box-shadow:
    0 0 0 4px rgba(0, 140, 207, 0.1),
    0 14px 30px rgba(0, 140, 207, 0.22);
}

.brand strong,
footer strong {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  width: fit-content;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand strong {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  transform: translateY(4px);
}

footer strong {
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.brand-blue {
  color: #1599df;
  background: linear-gradient(180deg, #7edaff 0%, #1599df 45%, #006ca8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(0, 168, 243, 0.35);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  overflow: visible;
  scrollbar-width: none;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav a {
  flex: 0 0 auto;
  padding: 10px 8px;
  border-radius: 8px;
  color: #111820;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 12px;
  color: var(--text);
  font-size: 12px;
  text-transform: none;
}

.search-icon,
.menu-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-deep);
  font-size: 18px;
}

.menu-button {
  display: none;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px;
  background: var(--ink);
}

.login-chip,
.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.login-chip,
.solid-button {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 16px 36px rgba(0, 140, 207, 0.25);
}

.solid-button:hover {
  background: linear-gradient(135deg, #1599df, #15b8ff);
}

.outline-button {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.page-hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 96px);
  color: var(--white);
  background: linear-gradient(112deg, #020405 0%, #05080d 37%, #082b45 70%, #0087cc 126%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(102deg, rgba(255,255,255,0.13), transparent 20%, transparent 72%, rgba(255,255,255,0.08)),
    radial-gradient(ellipse at 74% 48%, rgba(0, 158, 232, 0.48), transparent 36%);
  opacity: 0.86;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}

.page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-split,
.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.home-layout {
  align-items: start;
}

.hero-split > *,
.home-layout > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #c8eaff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: min(100%, 940px);
  margin-bottom: 16px;
  font-size: clamp(46px, 7.2vw, 109px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  padding-block: 0.04em;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--white);
}

h1 span:nth-child(n + 2) {
  color: #1599df;
}

.home-hero h1 {
  max-width: min(100%, 1030px);
  color: #1599df;
  font-size: clamp(50px, 8.6vw, 122px);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.home-hero h1 span {
  color: var(--white);
}

.home-hero h1 span:nth-child(n + 2) {
  color: #1599df;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 790px;
  color: rgba(255,255,255,0.73);
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 650;
  line-height: 1.55;
}

.hero-cta {
  margin-top: 18px;
}

.page-section {
  padding: 58px clamp(18px, 5vw, 72px) 88px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,248,255,0.98));
}

.page-section.is-hidden {
  display: none;
}

.partner-actions-section {
  padding-top: 18px;
  padding-bottom: 0;
}

.partner-login-section {
  padding-top: 0;
  padding-bottom: 36px;
}

.is-hidden {
  display: none !important;
}

.band {
  padding-block: 74px;
  background: #061019;
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.card-grid,
.service-grid,
.market-grid,
.social-grid,
.review-grid,
.blog-grid,
.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.four-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.five-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.card,
.service-card,
.video-card,
.dashboard-card,
.login-panel,
.answer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.card::before,
.service-card::before,
.dashboard-card::before,
.login-panel::before,
.answer-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -18px -18px 16px;
  background: linear-gradient(90deg, #071019, #1599df, #9fe5ff);
}

.card,
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 184px;
  padding: 18px;
}

.service-card h3 {
  min-height: 48px;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  font-weight: 950;
}

.service-about {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-about li {
  position: relative;
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.38;
}

.service-about li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.modal-about {
  margin-top: 10px;
  max-width: 720px;
}

.modal-about li {
  color: var(--text);
  font-size: 16px;
}

.service-price {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(0, 140, 207, 0.14);
  border-radius: 8px;
  background: rgba(237, 248, 255, 0.82);
}

.service-price span,
.service-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-price strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.service-summary small {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.card p,
.service-card p,
.video-card p,
.dashboard-card p,
footer p {
  color: var(--muted);
  line-height: 1.55;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #005b8b;
  background: rgba(0, 140, 207, 0.12);
  font-size: 12px;
  font-weight: 950;
}

.detail-note {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 140, 207, 0.15);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(0, 92, 140, 0.18);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-intro-section {
  padding-bottom: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235, 248, 255, 0.98));
}

.blog-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0, 153, 226, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 153, 226, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff, #effaff);
  box-shadow: 0 22px 54px rgba(0, 92, 140, 0.13);
}

.blog-intro-panel h2 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(34px, 3.7vw, 62px);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.blog-intro-panel h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.blog-intro-panel p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
}

.blog-intro-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-intro-points article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(0, 153, 226, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 153, 226, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff, #f5fbff);
}

.blog-intro-points strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.blog-intro-points span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.why-doc-section {
  padding-top: 34px;
  background: linear-gradient(180deg, #ffffff, rgba(235, 248, 255, 0.98));
}

.why-doc-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(33, 185, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 174, 255, 0.42), transparent 30%),
    linear-gradient(115deg, #03080d 0%, #061d2b 58%, #1599df 132%);
  box-shadow: 0 28px 70px rgba(0, 80, 124, 0.18);
}

.why-doc-panel .section-head h2 {
  color: var(--white);
  font-size: clamp(38px, 4.6vw, 74px);
  font-weight: 950;
  line-height: 0.96;
}

.why-hq-blue {
  color: #1599df;
  text-shadow: 0 0 22px rgba(21, 153, 223, 0.38);
}

.why-doc-panel .eyebrow {
  color: #9fe5ff;
}

.why-doc-panel .dark-outline {
  border-color: rgba(255,255,255,0.34);
  color: var(--white);
  background: rgba(2, 10, 16, 0.42);
}

.why-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-doc-grid article {
  min-height: 184px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 14%, rgba(159, 229, 255, 0.18), transparent 32%),
    rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.why-doc-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(21px, 1.7vw, 28px);
  font-weight: 950;
  line-height: 1.05;
}

.why-doc-grid span {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.blog-thumb {
  display: grid;
  align-content: space-between;
  min-height: 200px;
  padding: 26px;
  color: var(--white);
  text-decoration: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(17, 190, 255, 0.56), transparent 30%),
    linear-gradient(135deg, #030609 7%, #07324b 58%, #1599df);
}

.blog-thumb span {
  width: max-content;
  padding: 13px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.16);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-thumb strong {
  display: -webkit-box;
  max-width: 94%;
  overflow: hidden;
  font-size: clamp(18px, 2.25vw, 29px);
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card-copy {
  display: grid;
  gap: 24px;
  padding: 34px;
}

.blog-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.14;
}

.blog-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.62;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 14px 30px rgba(0, 140, 207, 0.18);
  font-weight: 950;
  text-transform: uppercase;
}

.read-more-link span {
  font-size: 18px;
  line-height: 1;
}

.blog-detail {
  display: grid;
  gap: 22px;
}

.full-blog-card {
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(0, 92, 140, 0.18);
}

.full-blog-cover {
  display: grid;
  align-content: space-between;
  min-height: 380px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(17, 190, 255, 0.56), transparent 30%),
    linear-gradient(135deg, #030609 7%, #07324b 58%, #1599df);
}

.full-blog-cover span {
  width: max-content;
  padding: 13px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.16);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.full-blog-cover h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4.9vw, 66px);
  line-height: 1.06;
}

.full-blog-intro {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
}

.full-blog-intro .badge {
  width: 100%;
  justify-content: start;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.full-blog-intro h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.5vw, 41px);
  line-height: 1.14;
}

.full-blog-intro p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.85vw, 24px);
  line-height: 1.55;
}

.full-blog-card .blog-gallery,
.full-blog-card .blog-body,
.full-blog-card .blog-cta {
  margin-inline: clamp(22px, 4vw, 48px);
}

.full-blog-card .blog-cta {
  margin-bottom: clamp(22px, 4vw, 48px);
}

.blog-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-inline: clamp(22px, 4vw, 48px);
}

.blog-action-row.compact {
  margin-inline: 0;
  justify-content: flex-end;
}

.blog-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-image {
  display: grid;
  align-content: end;
  min-height: 220px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 24%, rgba(17, 190, 255, 0.7), transparent 30%),
    linear-gradient(135deg, #030609, #07324b 62%, #1599df);
  box-shadow: var(--shadow);
}

.blog-image.white {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 153, 226, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff, #eaf7ff);
}

.blog-image.dark {
  background:
    radial-gradient(circle at 70% 28%, rgba(0, 153, 226, 0.4), transparent 32%),
    linear-gradient(135deg, #030609, #06131f);
}

.blog-image span {
  display: block;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.blog-image img {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  object-fit: cover;
  background: #030609;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.blog-image p {
  max-width: 260px;
  margin: 10px 0 0;
  color: inherit;
  opacity: 0.78;
  line-height: 1.45;
}

.blog-body {
  display: grid;
  gap: 14px;
}

.blog-body section,
.blog-cta {
  padding: 22px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.blog-body h2,
.blog-cta h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(18px, 2.1vw, 24px);
}

.blog-body p,
.blog-cta p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.blog-body p + p {
  margin-top: 14px;
}

.blog-doc-list {
  margin: 12px 0;
  padding-left: 22px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 88% 18%, rgba(17, 190, 255, 0.2), transparent 28%),
    var(--white);
}

.related-head {
  margin-top: 22px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.bill-summary {
  padding: 18px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.checkout-heading span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 30px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  font-size: 12px;
  font-weight: 950;
}

.checkout-heading h2,
.bill-summary h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
}

.product-info {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  overflow-x: auto;
}

.product-info h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 18px;
}

.product-info div,
.bill-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 140, 207, 0.12);
}

.product-table {
  width: 100%;
  min-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(0, 140, 207, 0.14);
  border-radius: 8px;
  background: #f7fbfe;
  border-collapse: separate;
  border-spacing: 0;
}

.product-table th,
.product-table td {
  padding: 10px 12px;
  border-right: 1px solid rgba(0, 140, 207, 0.12);
  vertical-align: middle;
}

.product-table th:last-child,
.product-table td:last-child {
  border-right: 0;
}

.product-table thead th {
  background: rgba(237, 248, 255, 0.9);
  border-bottom: 1px solid rgba(0, 140, 207, 0.12);
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-table tbody td {
  color: var(--ink);
  font-weight: 950;
  font-size: 16px;
  line-height: 1.25;
}

.product-table th:first-child,
.product-table td:first-child {
  text-align: left;
}

.product-table th:nth-child(2),
.product-table td:nth-child(2) {
  width: 140px;
  text-align: center;
}

.product-table th:nth-child(3),
.product-table td:nth-child(3) {
  width: 170px;
  text-align: right;
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.coupon-row .outline-button {
  min-height: 48px;
  color: var(--ink);
  border-color: rgba(4, 7, 11, 0.28);
  background: var(--white);
}

.product-info span,
.bill-summary span,
.checkout-panel label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info strong,
.bill-summary strong {
  color: var(--ink);
  text-align: right;
  font-size: 18px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-panel label {
  display: grid;
  gap: 7px;
}

.checkout-panel input,
.checkout-panel select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.checkout-panel input[readonly] {
  color: var(--muted);
  background: #f4f8fb;
}

.bill-summary {
  position: sticky;
  top: 94px;
}

.bill-summary h2 {
  margin-bottom: 16px;
}

.bill-summary .total-row {
  margin-top: 8px;
  padding-top: 18px;
  border-bottom: 0;
}

.bill-summary .total-row span,
.bill-summary .total-row strong {
  color: var(--blue-deep);
  font-size: 22px;
}

.bill-summary .solid-button {
  width: 100%;
  margin-top: 18px;
}

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

.directory-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(237,248,255,0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.directory-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -18px -18px 16px;
  background: linear-gradient(90deg, #071019, #1599df, #9fe5ff);
}

.directory-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.directory-head span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  font-size: 12px;
  font-weight: 950;
}

.directory-head h3 {
  margin: 0;
  font-size: 22px;
}

.directory-card p {
  color: var(--muted);
  line-height: 1.55;
}

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

.service-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 999px;
  color: #0a2a40;
  background: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 850;
}

.service-tags a:hover {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
}

.gst-note {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 140, 207, 0.2);
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(237, 248, 255, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
  font-weight: 760;
  line-height: 1.45;
}

.gst-note strong {
  color: var(--blue-deep);
  font-weight: 950;
}

.services-browser {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-category-panel,
.service-results-panel {
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.service-category-panel {
  position: sticky;
  top: 104px;
  overflow: hidden;
}

.service-results-panel {
  padding: 18px;
}

.browser-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 140, 207, 0.14);
  background: linear-gradient(135deg, rgba(237, 248, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.browser-title span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.browser-title strong {
  color: var(--blue-deep);
  font-size: 12px;
}

.category-list {
  display: grid;
  max-height: calc(100vh - 190px);
  overflow: auto;
  padding: 10px;
  gap: 8px;
}

.category-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 140, 207, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.category-list button span {
  font-weight: 950;
}

.category-list button small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.category-list button:hover,
.category-list button.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 14px 28px rgba(0, 140, 207, 0.2);
}

.category-list button:hover small,
.category-list button.active small {
  color: rgba(255, 255, 255, 0.72);
}

.compact-head {
  margin: 18px 0;
}

.count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 950;
}

.hero-brand-card {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(0, 12, 22, 0.94), rgba(0, 148, 218, 0.76));
  box-shadow: var(--gloss-shadow);
  text-align: center;
}

.hero-logo-orbit {
  display: grid;
  place-items: center;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #06131f, #1599df);
  box-shadow:
    inset 0 0 34px rgba(255,255,255,0.18),
    0 28px 80px rgba(0, 0, 0, 0.3);
  animation: logoSpin360 9s linear infinite;
  transform-style: preserve-3d;
}

.hero-logo-orbit img,
.console-logo {
  width: 156px;
  height: 156px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: #030609;
  box-shadow:
    0 0 0 8px rgba(0, 140, 207, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-brand-card h3 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 28px;
}

.hero-brand-card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-weight: 800;
}

.console {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(4, 16, 27, 0.64);
  box-shadow: var(--gloss-shadow);
  backdrop-filter: blur(22px);
}

.glossy-console {
  text-align: center;
}

.home-hero .glossy-console {
  align-self: start;
  transform: none;
}

.home-logo-orbit {
  display: grid;
  place-items: center;
  width: 196px;
  height: 196px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #06131f, #1599df);
  box-shadow:
    inset 0 0 34px rgba(255,255,255,0.18),
    0 28px 80px rgba(0, 0, 0, 0.3);
  animation: logoSpin360 9s linear infinite;
  transform-style: preserve-3d;
}

.home-logo-orbit .console-logo {
  width: 156px;
  height: 156px;
}

.glossy-console h3 {
  color: var(--white);
  font-size: 28px;
}

.search-bar,
.prompt-box,
.login-form input,
.login-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 140, 207, 0.2);
  border-radius: 8px;
  background: var(--white);
}

.search-bar,
.prompt-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}

.search-bar input,
.prompt-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.stats div {
  min-height: 98px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.stats strong {
  display: block;
  font-size: 30px;
}

.stats span,
.invoice-box span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
}

.hero-impact {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 178, 255, 0.28), transparent 34%),
    rgba(255,255,255,0.08);
}

.hero-impact > p {
  margin: 0 0 12px;
  color: #c8eaff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-impact > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-impact article {
  min-height: 92px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.hero-impact article:last-child {
  grid-column: 1 / -1;
}

.hero-impact strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.hero-impact span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 850;
}

.hero-impact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 16px 34px rgba(0, 140, 207, 0.24);
  font-weight: 950;
  text-transform: uppercase;
}

.hero-impact-cta:hover {
  background: linear-gradient(135deg, #1599df, #15b8ff);
}

.hero-impact.landscape {
  max-width: 1360px;
  margin: clamp(30px, 5vw, 58px) auto 0;
  padding: 14px clamp(20px, 3vw, 38px) 18px;
  border: 1px solid rgba(33, 185, 255, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 174, 255, 0.52), transparent 32%),
    linear-gradient(110deg, #03080d 0%, #061d2b 56%, #007fc0 100%);
  box-shadow: 0 22px 52px rgba(0, 90, 145, 0.24), inset 0 1px 0 rgba(255,255,255,0.16);
}

.impact-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.hero-impact.landscape .impact-heading > p {
  margin: 0;
  color: #87dcff;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-impact.landscape .impact-stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.hero-impact.landscape article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 72px;
  padding: 8px 18px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white);
  text-align: center;
}

.hero-impact.landscape article:last-child { border-right: 0; }

.hero-impact.landscape article:last-child {
  grid-column: auto;
}

.hero-impact.landscape strong {
  color: var(--white);
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 950;
}

.hero-impact.landscape span {
  max-width: 180px;
  margin-top: 6px;
  color: rgba(255,255,255,0.76);
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 950;
  line-height: 1.12;
}

.hero-impact.landscape .hero-impact-cta {
  width: max-content;
  min-height: 34px;
  min-width: 0;
  margin: 0;
  padding: 0 14px;
  border-color: rgba(255,255,255,0.34);
  background: rgba(2, 10, 16, 0.42);
  box-shadow: none;
  font-size: 11px;
}

.process-strip {
  margin-top: clamp(26px, 4vw, 46px);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04)),
    rgba(4, 16, 27, 0.46);
  box-shadow: var(--gloss-shadow);
  backdrop-filter: blur(20px);
}

.process-strip .eyebrow {
  margin-bottom: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-step {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 17px 16px;
  color: var(--white);
  border-color: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  box-shadow: none;
}

.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #bfeaff;
  background: rgba(0, 143, 212, 0.18);
  font-size: 12px;
  font-weight: 950;
}

.flow-step strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
}

.flow-step p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.4;
}

.buy-button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 14px 30px rgba(0, 140, 207, 0.22);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.buy-button:hover {
  background: linear-gradient(135deg, #1599df, #15b8ff);
}

body.modal-open {
  overflow: hidden;
}

.service-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 6, 10, 0.72);
  backdrop-filter: blur(14px);
}

.service-modal {
  position: relative;
  width: min(100%, 980px);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(0, 140, 207, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(237,248,255,0.97)),
    var(--white);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.36);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.service-modal-head {
  max-width: 760px;
  padding-right: 42px;
}

.service-modal-head h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 64px);
}

.service-modal-head p,
.faq-block p {
  color: var(--muted);
  line-height: 1.55;
}

.service-summary {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  margin: 22px 0;
}

.service-summary div {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-summary strong {
  color: var(--ink);
  font-size: 24px;
}

.service-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-detail-columns section,
.faq-block {
  padding: 18px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-detail-columns ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.75;
}

.faq-block {
  margin-top: 14px;
}

.faq-block details {
  padding: 12px 0;
  border-top: 1px solid rgba(0, 140, 207, 0.12);
}

.faq-block details:first-of-type {
  border-top: 0;
}

.faq-block summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-block p {
  margin: 10px 0 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.modal-actions .outline-button {
  color: var(--ink);
  border-color: rgba(4, 7, 11, 0.4);
  background: var(--white);
}

.login-modal {
  width: min(100%, 960px);
}

.login-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 18px;
}

.login-modal-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 22px;
  border-radius: 8px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(0, 153, 226, 0.38), transparent 34%),
    linear-gradient(135deg, #030609, #07324b);
}

.popup-logo-orbit {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #06131f, #1599df);
  box-shadow:
    inset 0 0 26px rgba(255,255,255,0.18),
    0 22px 54px rgba(0, 0, 0, 0.28);
  animation: logoSpin360 9s linear infinite;
  transform-style: preserve-3d;
}

.popup-logo-orbit img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: #030609;
}

.login-modal-copy h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.login-modal-copy p {
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.login-benefits {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.login-benefits div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.login-benefits strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #06131f, #1599df);
  font-size: 12px;
}

.login-benefits span {
  font-weight: 900;
}

.popup-login-form {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(0, 140, 207, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.auth-tabs button {
  min-height: 42px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 950;
}

.auth-tabs button.active {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
}

.popup-login-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.popup-login-form input,
.popup-login-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  outline: 0;
}

.popup-login-form .solid-button {
  width: 100%;
}

.popup-login-form[data-auth-mode="login"] .register-field,
.popup-login-form[data-auth-mode="register"] .register-now-row {
  display: none;
}

.register-now-row {
  text-align: center;
}

.register-now {
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.popup-login-form p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.video-card {
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  background: #05090e;
}

.video-top {
  position: relative;
  min-height: 198px;
  padding: 18px;
  color: var(--white);
  background: #07324b;
}

.video-top.red { background: linear-gradient(135deg, #d51c27, #8c0f18); }
.video-top.pink { background: linear-gradient(135deg, #8a37bd, #ee5b4e); }
.video-top.blue { background: linear-gradient(135deg, #0d67b4, #1599df); }
.video-top.green { background: linear-gradient(135deg, #20c766, #0a8f55); }
.video-top.black { background: linear-gradient(135deg, #030609, #07324b); }

.video-top strong {
  font-size: 32px;
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-card .copy {
  padding: 18px;
  color: var(--ink);
  background: rgba(255,255,255,0.96);
}

.video-card .outline-button {
  width: 100%;
  margin-top: 12px;
  color: var(--ink);
  border-color: var(--ink);
  background: var(--white);
}

.google-review-hero {
  position: relative;
  overflow: visible;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 96px);
  color: var(--white);
  background: linear-gradient(112deg, #020405 0%, #05080d 37%, #082b45 70%, #0087cc 126%);
}

.review-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.google-review-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
}

.google-review-hero h1 span {
  display: block;
}

.google-review-hero h1 span:nth-child(n + 2) {
  color: #1599df;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.google-icon,
.arrow-link {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  font-size: 20px;
  font-weight: 950;
  backdrop-filter: blur(16px);
}

.google-icon {
  color: #0f74de;
  background: var(--white);
}

.review-logo-stage {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.17);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(0, 12, 22, 0.94), rgba(0, 148, 218, 0.72));
  box-shadow: var(--gloss-shadow);
  text-align: center;
  perspective: 900px;
}

.hero-brand-card.review-logo-stage {
  align-content: center;
}

.logo-orbit {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #06131f, #1599df);
  box-shadow:
    inset 0 0 34px rgba(255,255,255,0.18),
    0 28px 80px rgba(0, 0, 0, 0.34);
  animation: logoSpin360 9s linear infinite;
  transform-style: preserve-3d;
}

.logo-orbit img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: #030609;
}

.review-logo-stage strong {
  color: var(--white);
  font-size: 34px;
  line-height: 1;
}

.review-hero-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #ffb400;
  background: rgba(255,255,255,0.1);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

.review-hero-stars span {
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  text-transform: uppercase;
}

@keyframes logoSpin360 {
  from { transform: rotateY(0deg) rotateX(0deg); }
  to { transform: rotateY(360deg) rotateX(0deg); }
}

@keyframes profileSpin360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.google-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 18px;
  align-items: start;
}

.review-section-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.review-section-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 14px 30px rgba(0, 140, 207, 0.18);
  font-weight: 950;
  text-align: center;
}

.review-feed,
.write-review-panel {
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
}

.google-feed-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 140, 207, 0.14);
}

.google-feed-head strong,
.google-feed-head span {
  display: block;
}

.google-feed-head strong {
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.google-feed-head span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 850;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: start;
  justify-content: flex-end;
}

.filter-tabs button,
.review-links button {
  min-height: 32px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.filter-tabs button {
  padding: 6px 10px;
}

.google-review-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 140, 207, 0.12);
}

.google-review-card:last-child {
  border-bottom: 0;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  font-weight: 950;
}

.review-meta,
.stars,
.review-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-meta {
  justify-content: space-between;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  color: var(--ink);
  font-size: 17px;
}

.review-meta span,
.stars span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.review-meta em {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-style: normal;
  font-weight: 950;
}

.stars {
  margin-top: 10px;
}

.stars strong {
  color: #f5ad05;
  letter-spacing: 0;
}

.review-body p {
  margin: 12px 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.review-body small {
  display: block;
  color: var(--blue-deep);
  font-weight: 900;
}

.review-links {
  margin-top: 12px;
}

.review-links button {
  padding: 6px 9px;
}

.write-review-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.write-review-panel h2 span {
  display: block;
}

.write-review-panel label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.write-review-panel label strong {
  color: #f5ad05;
  font-size: 24px;
}

.write-review-panel input,
.write-review-panel textarea {
  width: 100%;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.write-review-panel input {
  min-height: 48px;
  padding: 0 12px;
}

.write-review-panel textarea {
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.write-review-panel .solid-button {
  width: 100%;
  margin-top: 16px;
}

.video-review-strip {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 36%, rgba(0, 153, 226, 0.22), transparent 34%),
    #061019;
  color: var(--white);
  box-shadow: var(--gloss-shadow);
}

.video-review-strip h2 {
  max-width: 720px;
}

.video-review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.video-review-row div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.video-review-row span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: var(--shadow);
}

.youtube-frame-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.youtube-frame {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0,0,0,0.16);
}

.youtube-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 72% 38%, rgba(0, 158, 232, 0.35), transparent 36%),
    linear-gradient(135deg, #020405, #06131f 62%, #07324b);
}

.youtube-screen::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.youtube-screen em {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(0,0,0,0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.youtube-copy {
  padding: 16px;
}

.youtube-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.success-youtube {
  background:
    radial-gradient(circle at 78% 32%, rgba(0, 153, 226, 0.24), transparent 34%),
    #030609;
}

.youtube-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.youtube-feature .youtube-frame .youtube-screen {
  aspect-ratio: 16 / 9;
}

.success-copy {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
}

.success-copy strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.success-copy p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.answer-card {
  padding: 24px;
  box-shadow: var(--gloss-shadow);
}

.answer-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.85;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 14px;
}

.status-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.status-list button {
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.status-list button.active {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
}

.dashboard-card {
  padding: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(236,248,255,0.94));
}

.dashboard-card::before,
.login-panel::before,
.answer-card::before {
  margin: -24px -24px 20px;
}

.status-top,
.invoice-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.invoice-box div {
  padding: 16px;
  border-radius: 8px;
  background: #eef8ff;
}

.invoice-box span {
  color: var(--muted);
}

.progress-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.progress-track span {
  height: 10px;
  border-radius: 999px;
  background: #d7e2ea;
}

.progress-track .done,
.progress-track .active { background: var(--blue); }

.dashboard-suite {
  display: grid;
  gap: 18px;
}

.dashboard-profile-card,
.dashboard-panel,
.dashboard-stat-row article {
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-profile-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 22px;
}

.user-profile-panel .home-logo-orbit {
  width: 150px;
  height: 150px;
}

.user-profile-panel .profile-photo-orbit {
  position: relative;
  margin-bottom: 0;
  border: 2px solid rgba(255, 255, 255, 0.46);
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.36), transparent 25%),
    radial-gradient(circle at 72% 76%, rgba(21,153,223,0.5), transparent 32%),
    linear-gradient(135deg, #030609 0%, #07324b 54%, #1599df 100%);
  box-shadow:
    inset 0 0 34px rgba(255,255,255,0.18),
    inset 0 -18px 32px rgba(0,0,0,0.16),
    0 22px 54px rgba(0, 140, 207, 0.28);
  perspective: 900px;
  animation: logoSpin360 7s linear infinite;
  transform-style: preserve-3d;
}

.user-profile-panel .profile-photo-orbit::after {
  content: "360";
  position: absolute;
  right: 7px;
  bottom: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 11px;
  font-weight: 950;
}

.user-profile-panel .home-logo-orbit .console-logo {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  transform: translateZ(24px);
}

.profile-logo-upload {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.profile-photo-label {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-logo-upload label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.profile-logo-upload input {
  max-width: 170px;
  font-size: 11px;
}

.profile-form-area {
  display: grid;
  gap: 12px;
}

.profile-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.profile-fields label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

.profile-fields .full-field {
  grid-column: 1 / -1;
}

.profile-fields input,
.profile-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-fields input[readonly] {
  color: var(--muted);
  background: #edf4f9;
  cursor: not-allowed;
}

.profile-fields textarea {
  min-height: 86px;
  resize: vertical;
}

.profile-action-stack {
  display: grid;
  gap: 10px;
  min-width: 178px;
}

.profile-action-stack .solid-button,
.profile-action-stack .rm-whatsapp-button {
  width: 100%;
}

.dashboard-profile-card h2,
.dashboard-panel h2 {
  margin: 6px 0;
}

.dashboard-profile-card p,
.subscription-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.55;
}

.dashboard-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(126, 218, 255, 0.58), transparent 28%),
    linear-gradient(135deg, #03131f 0%, #006da4 54%, #1599df 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 22px 58px rgba(0, 140, 207, 0.26);
}

.dashboard-stat-row article {
  padding: 18px;
  border-color: rgba(255,255,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07)),
    rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
}

.dashboard-stat-row span {
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.dashboard-stat-row strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 30px;
}

.dashboard-panel {
  padding: 22px;
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.dashboard-table th,
.dashboard-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(0, 140, 207, 0.14);
  text-align: left;
  vertical-align: top;
}

.dashboard-table th {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.dashboard-table td {
  color: var(--text);
  font-weight: 800;
}

.dashboard-table small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 750;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 950;
}

.status-pill.active {
  color: #0f7d42;
  background: rgba(32, 199, 102, 0.14);
}

.status-pill.pending {
  color: #936300;
  background: rgba(255, 183, 3, 0.18);
}

.status-pill.failed {
  color: #b42318;
  background: rgba(255, 73, 73, 0.14);
}

.subscription-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 18px;
  align-items: center;
}

.admin-dashboard-suite .dashboard-panel {
  overflow: hidden;
}

.admin-profile-panel {
  border-top: 4px solid var(--blue);
  background:
    radial-gradient(circle at 92% 6%, rgba(126, 218, 255, 0.24), transparent 26%),
    var(--white);
}

.admin-profile-fields input:not([readonly]),
.admin-profile-fields textarea {
  border-color: rgba(0, 140, 207, 0.24);
  background: #f8fcff;
}

.admin-gloss-row {
  margin-bottom: 2px;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-metric-group {
  display: grid;
  gap: 10px;
}

.admin-metric-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-metric-group .dashboard-stat-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-metric-group .dashboard-stat-row strong {
  font-size: 24px;
}

.admin-wide-table {
  min-width: 1280px;
}

.admin-history-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 18px;
}

.admin-history-filters label {
  display: grid;
  gap: 6px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-history-filters select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 140, 207, 0.22);
  border-radius: 8px;
  background: #f8fcff;
  color: var(--text);
  font-weight: 820;
}

.orders-history-filter-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  white-space: nowrap;
}

.orders-history-filter-row label {
  min-width: 170px;
}

.orders-history-filter-row select {
  appearance: none;
  padding-right: 34px;
  background:
    linear-gradient(45deg, transparent 50%, var(--blue-deep) 50%) calc(100% - 18px) 20px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--blue-deep) 50%, transparent 50%) calc(100% - 12px) 20px / 6px 6px no-repeat,
    #f8fcff;
}

.orders-history-filter-row button {
  min-width: 130px;
}

.easy-filter-row label {
  min-width: 190px;
}

.easy-filter-row label:first-child {
  min-width: 210px;
}

.admin-history-filters button {
  align-self: end;
  min-height: 44px;
}

.admin-client-search-panel {
  background:
    radial-gradient(circle at 90% 14%, rgba(126, 218, 255, 0.2), transparent 24%),
    var(--white);
}

.admin-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.admin-search-row input {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(0, 140, 207, 0.24);
  border-radius: 8px;
  background: #f8fcff;
  color: var(--text);
  font: inherit;
  font-weight: 820;
}

.admin-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-control-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-control-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: var(--blue-soft);
}

.admin-control-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.admin-control-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.55;
}

.admin-next-step-pages {
  display: grid;
  gap: 18px;
}

.admin-control-page {
  display: none;
  scroll-margin-top: 110px;
}

.admin-control-page.active {
  display: block;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.admin-edit-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}

.admin-edit-form .full-field,
.admin-edit-form .solid-button {
  grid-column: 1 / -1;
}

.admin-edit-form input,
.admin-edit-form select,
.admin-edit-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 140, 207, 0.22);
  border-radius: 8px;
  background: #f8fcff;
  color: var(--text);
  font: inherit;
  font-weight: 760;
}

.admin-edit-form textarea {
  min-height: 140px;
  resize: vertical;
}

.login-panel {
  max-width: 780px;
  padding: 24px;
}

.login-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.login-form input,
.login-form select {
  padding: 10px 12px;
  outline: 0;
}

.login-form button { grid-column: 1 / -1; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-services-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 153, 226, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(235, 248, 255, 0.98));
}

.home-services-section .section-head h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.dark-outline {
  border-color: rgba(0, 140, 207, 0.24);
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.78);
}

.home-category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-category-tile {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 128px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 155, 226, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 153, 226, 0.2), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fcff 54%, #e5f6ff 100%);
  box-shadow: 0 18px 44px rgba(0, 92, 140, 0.12);
}

.home-category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.82), transparent 28%, transparent 72%, rgba(0, 153, 226, 0.1));
  pointer-events: none;
}

.home-category-tile strong {
  position: relative;
  z-index: 1;
  max-width: 94%;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 950;
  line-height: 1.08;
}

.home-category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 153, 226, 0.54);
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 153, 226, 0.26), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #effaff 50%, #d9f2ff 100%);
  box-shadow: 0 24px 56px rgba(0, 112, 174, 0.18);
}

.brand-partnership-home-section {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(235, 248, 255, 0.98), #ffffff);
}

.brand-partnership-home {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  justify-items: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(33, 185, 255, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 174, 255, 0.42), transparent 28%),
    linear-gradient(115deg, #03080d 0%, #061d2b 58%, #1599df 132%);
  box-shadow: 0 28px 70px rgba(0, 80, 124, 0.18);
}

.brand-partnership-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  padding: 0;
  text-align: center;
}

.brand-partnership-copy h2 {
  max-width: none;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 950;
  line-height: 0.94;
  white-space: nowrap;
}

.brand-partnership-copy p:not(.eyebrow) {
  max-width: none;
  color: rgba(255,255,255,0.74);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.48;
  white-space: nowrap;
}

.brand-marquee-panel {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  width: min(100%, 1180px);
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  padding: 18px 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(3, 8, 13, 0.78), transparent 18%, transparent 82%, rgba(3, 8, 13, 0.78)),
    rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.brand-marquee-panel::before,
.brand-marquee-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 74px;
  pointer-events: none;
}

.brand-marquee-panel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 8, 13, 0.94), transparent);
}

.brand-marquee-panel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 8, 13, 0.94), transparent);
}

.brand-marquee-row {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: 14px;
  animation: brandMarquee 28s linear infinite;
}

.brand-marquee-row.reverse {
  animation-name: brandMarqueeReverse;
  animation-duration: 34s;
}

.brand-marquee-panel:hover .brand-marquee-row {
  animation-play-state: paused;
}

.moving-brand-card {
  display: grid;
  align-content: center;
  justify-items: start;
  width: 230px;
  min-height: 112px;
  padding: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(159, 229, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(21, 153, 223, 0.36), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.moving-brand-card span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 8px;
  color: #9fe5ff;
  background: rgba(2, 10, 16, 0.54);
  font-size: 12px;
  font-weight: 950;
}

.moving-brand-card strong {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.02;
}

.moving-brand-card:hover {
  border-color: rgba(159, 229, 255, 0.72);
  background:
    radial-gradient(circle at 82% 18%, rgba(21, 153, 223, 0.52), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
}

.partner-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.partner-tabs {
  justify-content: center;
}

.partner-tabs button {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  text-transform: uppercase;
}

.partner-tabs button.active {
  border-color: rgba(0, 140, 207, 0.48);
  color: var(--white);
  background: linear-gradient(135deg, #03131f, #1599df);
  box-shadow: 0 12px 28px rgba(0, 140, 207, 0.2);
}

.partner-brand-grid,
.professional-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.partner-brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), transparent 8%, transparent 92%, rgba(255,255,255,0.98)),
    linear-gradient(180deg, #ffffff, #f3fbff);
  box-shadow: var(--shadow);
}

.partner-brand-marquee::before,
.partner-brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 86px;
  pointer-events: none;
}

.partner-brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.partner-brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.partner-brand-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding-inline: 14px;
  animation: brandMarquee 48s linear infinite;
}

.partner-brand-marquee:hover .partner-brand-track {
  animation-play-state: paused;
}

.partner-brand-card,
.professional-partner-card,
.partner-referral-card {
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-brand-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 168px;
  padding: 12px;
  text-align: center;
}

.partner-logo-frame {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0, 140, 207, 0.22);
  border-radius: 8px;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 76% 18%, rgba(17, 190, 255, 0.34), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eaf8ff 46%, #cfefff 100%);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 140, 207, 0.18), inset 0 1px 0 rgba(255,255,255,0.86);
}

.partner-logo-frame span {
  letter-spacing: 0;
  font-size: 18px;
}

.partner-brand-card h3,
.professional-partner-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.partner-brand-card p,
.professional-partner-card p,
.professional-partner-card small,
.partner-referral-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.45;
}

.professional-partner-card {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 18px;
  border-color: rgba(126, 218, 255, 0.42);
  background:
    radial-gradient(circle at 88% 14%, rgba(126, 218, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #031524 0%, #075174 56%, #1599df 128%);
  box-shadow: 0 18px 42px rgba(0, 140, 207, 0.28);
}

.professional-partner-card h3,
.professional-partner-card p,
.professional-partner-card small {
  color: var(--white);
}

.professional-partner-card p,
.professional-partner-card small {
  opacity: 0.82;
}

.professional-partner-card span {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 950;
}

.professional-access-panel {
  display: grid;
  gap: 0;
  width: min(100%, 1080px);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 140, 207, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(126, 218, 255, 0.24), transparent 24%),
    var(--white);
  box-shadow: 0 28px 72px rgba(0, 112, 174, 0.2);
}

.professional-access-panel.partner-auth-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 8%, rgba(126, 218, 255, 0.22), transparent 24%),
    #ffffff;
}

.partner-access-copy {
  min-height: 520px;
}

.partner-access-copy .outline-button {
  margin-top: 10px;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

.professional-access-panel > .section-head {
  margin: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(21,153,223,0.5), transparent 28%),
    linear-gradient(135deg, #02070c 0%, #06314a 62%, #1599df 128%);
}

.professional-access-panel > .section-head .eyebrow,
.professional-access-panel > .section-head h2 {
  color: var(--white);
}

.professional-access-panel > .section-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
}

.professional-access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(0, 140, 207, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.professional-partner-form {
  display: grid;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.professional-partner-form:first-child {
  border-radius: 8px;
}

.professional-partner-form:last-child {
  border-left: 0;
  border-radius: 8px;
}

.professional-partner-form h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  text-transform: uppercase;
}

.professional-partner-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.professional-partner-form input,
.professional-partner-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 140, 207, 0.22);
  border-radius: 8px;
  background: #f8fcff;
  color: var(--text);
  font: inherit;
  font-weight: 820;
}

.partner-auth-shell[data-partner-auth-mode="login"] .partner-register-form,
.partner-auth-shell[data-partner-auth-mode="register"] .partner-login-form {
  display: none;
}

.partner-auth-tabs {
  margin-bottom: 4px;
}

.partner-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-access-message {
  margin: 4px 0 0;
  padding: 12px;
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-weight: 760;
  line-height: 1.45;
}

.client-login-message {
  margin: 4px 0 0;
  padding: 12px;
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-weight: 760;
  line-height: 1.45;
}

.partner-dashboard-suite {
  display: grid;
  gap: 18px;
}

.professional-profile-panel {
  border-top: 4px solid var(--blue);
  background:
    radial-gradient(circle at 92% 6%, rgba(126, 218, 255, 0.22), transparent 26%),
    var(--white);
}

.partner-dashboard-block {
  display: grid;
  gap: 18px;
}

.partner-registration-filter {
  background:
    radial-gradient(circle at 90% 12%, rgba(126, 218, 255, 0.22), transparent 24%),
    var(--white);
}

.partner-type-filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
}

.partner-type-filter-row label {
  display: grid;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.partner-type-filter-row select {
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 140, 207, 0.24);
  border-radius: 8px;
  background: #f8fcff;
  color: var(--text);
  font: inherit;
  font-weight: 850;
}

.partner-type-filter-row strong {
  color: var(--ink);
  font-size: 22px;
}

.partner-type-filter-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.45;
}

.partner-referral-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(126, 218, 255, 0.24), transparent 24%),
    var(--white);
}

.partner-referral-card h2 {
  margin: 6px 0;
}

.partner-referral-card strong {
  display: inline-flex;
  margin: 4px 0 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #03131f, #1599df);
  font-size: 26px;
  font-weight: 950;
}

@keyframes brandMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes brandMarqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.offer-card {
  display: grid;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(0, 140, 207, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f4fbff);
  box-shadow: 0 18px 48px rgba(0, 92, 140, 0.12);
}

.offer-card span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.08;
}

.offer-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.offer-card strong {
  align-self: end;
  color: var(--blue-deep);
  font-weight: 950;
  text-transform: uppercase;
}

.live-counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.live-counters article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(27, 188, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #030609, #07324b 64%, #1599df);
  box-shadow: var(--gloss-shadow);
}

.live-counters strong {
  display: block;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.live-counters span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.74);
  font-weight: 850;
}

.gpt-app-section {
  padding-top: 34px;
  background: #eef6fb;
}

.gpt-workspace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: #f7f9fb;
  box-shadow: var(--shadow);
}

.gpt-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: #060b10;
}

.gpt-persona-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.gpt-persona-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.gpt-persona-card p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  line-height: 1.45;
}

.new-chat-button,
.gpt-history button {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  text-align: left;
  font-weight: 850;
}

.new-chat-button {
  text-align: center;
  background: linear-gradient(135deg, #071522, #1599df);
}

.gpt-history {
  display: grid;
  gap: 8px;
}

.gpt-history span {
  margin: 8px 0 4px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gpt-chat-shell {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 760px;
  overflow: hidden;
  background: var(--white);
}

.gpt-thread {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 72px);
  overflow-y: auto;
  background: linear-gradient(180deg, #fbfdff, #fff);
}

.gpt-welcome {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 42px auto 12px;
  text-align: center;
}

.gpt-welcome img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 140, 207, 0.22);
}

.gpt-welcome h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
}

.gpt-welcome p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.gpt-suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 18px;
}

.gpt-principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto 18px;
}

.gpt-principles span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 950;
}

.gpt-suggestions button {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: #f4fbff;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.gpt-message {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 8px;
  line-height: 1.55;
}

.gpt-message.assistant {
  background: #f5fbff;
  color: var(--text);
}

.gpt-message.user {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
}

.gpt-avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #071522, #1599df);
  font-weight: 950;
}

.gpt-message.user .gpt-avatar {
  color: var(--blue-deep);
  background: var(--white);
}

.gpt-message strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-weight: 950;
}

.gpt-message.user strong {
  color: var(--white);
}

.gpt-message h3,
.gpt-message p {
  margin-bottom: 8px;
}

.gpt-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 14px;
  margin-top: 14px;
}

.gpt-response-block {
  margin: 12px 0;
  padding: 13px 14px;
  border: 1px solid rgba(0, 140, 207, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
}

.gpt-response-block h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
}

.gpt-response-block p {
  margin: 0;
}

.gpt-answer-grid section {
  padding: 14px;
  border: 1px solid rgba(0, 140, 207, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.gpt-answer-grid h4 {
  margin: 0 0 8px;
  color: var(--ink);
}

.gpt-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
}

.gpt-composer textarea {
  width: 100%;
  min-height: 54px;
  max-height: 160px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  resize: none;
  line-height: 1.35;
}

.promotion-layout,
.promotion-workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.market-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.market-front-panel {
  display: grid;
  gap: 16px;
}

.market-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.market-tabs button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.market-tabs button.active {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
  box-shadow: 0 16px 34px rgba(0, 140, 207, 0.22);
}

.market-listing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.market-listing-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
}

.short-tabs {
  max-width: 520px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.promoted-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.promoted-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 430px;
  padding: 16px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-top: 4px solid #1599df;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.promoted-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(126, 218, 255, 0.46), transparent 32%),
    linear-gradient(135deg, #030609 0%, #07324b 56%, #1599df 100%);
}

.promoted-media img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.promoted-media span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.promoted-card small {
  color: var(--blue-deep);
  font-weight: 950;
  text-transform: uppercase;
}

.promoted-card h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 28px;
}

.promoted-card p {
  display: -webkit-box;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.promoted-card strong {
  color: var(--ink);
  font-size: 22px;
}

.promoted-card p strong {
  font-size: inherit;
}

.promoted-price {
  display: block;
  margin-top: 14px;
}

.market-tab-content {
  display: none;
  gap: 16px;
}

.market-tab-content.active {
  display: grid;
}

.market-mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-mini-list span {
  padding: 13px 14px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-weight: 950;
}

.market-media-card,
.market-detail-card {
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.market-media-card {
  min-height: 430px;
  padding: 18px;
}

.media-preview {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100%;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(126, 218, 255, 0.55), transparent 30%),
    linear-gradient(135deg, #030609 0%, #07324b 56%, #1599df 100%);
}

.media-preview img {
  width: 116px;
  height: 116px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.media-preview strong {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 950;
  line-height: 1;
}

.media-preview small {
  margin-top: 10px;
  color: #c8eaff;
  font-weight: 800;
}

.play-dot {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}

.market-detail-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 46px);
}

.market-detail-card h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
}

.market-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

#promoPreviewAbout,
.promoted-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.market-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-detail-list span {
  padding: 13px 14px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-weight: 950;
}

.market-price-only {
  width: fit-content;
  min-width: 180px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--blue-soft);
}

.market-price-only strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
}

.promotion-plans-page {
  display: grid;
  gap: 24px;
}

.promotion-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.promotion-plan-card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-height: 255px;
  padding: 22px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-top: 4px solid #1599df;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.promotion-plan-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(126, 218, 255, 0.5), transparent 28%),
    linear-gradient(135deg, #030609, #07324b 58%, #1599df);
}

.promotion-plan-card span {
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.promotion-plan-card.featured span,
.promotion-plan-card.featured p {
  color: #d7f2ff;
}

.promotion-plan-card strong {
  color: inherit;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
}

.promotion-plan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.promotion-copy,
.promotion-form,
.promotion-fields-panel {
  padding: 28px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.promotion-fields-panel {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.promotion-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.duration-plans {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.duration-plans button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 140, 207, 0.2);
  border-radius: 8px;
  background: #f4fbff;
  cursor: pointer;
  font-weight: 950;
}

.duration-plans button.active {
  color: var(--white);
  background: linear-gradient(135deg, #06131f, #1599df);
}

.promotion-form {
  display: grid;
  gap: 16px;
}

.promotion-form .full-field {
  grid-column: 1 / -1;
}

.promotion-form .full-field span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 950;
}

.promotion-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.promotion-form input,
.promotion-form select,
.promotion-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.promotion-form textarea {
  min-height: 220px;
  resize: vertical;
}

.media-preview video {
  width: min(100%, 520px);
  max-height: 320px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.market-live-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 0;
}

.promotion-full-page {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.promotion-full-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  padding: clamp(26px, 4vw, 46px);
}

.promotion-full-content > div:last-child {
  display: grid;
  align-content: start;
  gap: 18px;
}

.promotion-full-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.promotion-full-content p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
  white-space: pre-wrap;
}

.promo-one-pager {
  max-width: 1220px;
  margin: 0 auto;
}

.promo-blog-copy {
  display: grid;
  gap: 18px;
}

.promo-blog-block {
  padding: 18px;
  border: 1px solid rgba(0, 140, 207, 0.16);
  border-radius: 8px;
  background: rgba(235, 248, 255, 0.72);
}

.promo-blog-block h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.promo-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.promo-detail-actions .outline-button {
  position: relative;
  overflow: hidden;
  border-color: rgba(21, 153, 223, 0.72);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, #041c2d 0%, #008ccf 58%, #16bbff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 18px 36px rgba(0, 140, 207, 0.32);
}

.promo-detail-actions .outline-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.32) 42%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.promo-detail-actions .outline-button:hover::after {
  transform: translateX(120%);
}

.promo-detail-actions .is-placeholder-link {
  opacity: 0.78;
}

.promotion-summary,
.payment-status {
  padding: 14px 16px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--blue-soft);
}

.promotion-summary span,
.payment-status {
  color: var(--blue-deep);
  font-weight: 900;
}

.promotion-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 22px;
}

.promotion-payment-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 16px;
  border: 1px solid rgba(0, 140, 207, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(235, 248, 255, 0.95), rgba(255, 255, 255, 0.98));
}

.promotion-payment-box span,
.promotion-payment-box strong {
  display: block;
}

.promotion-payment-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.promotion-payment-box strong {
  margin-top: 4px;
  color: var(--blue-deep);
  font-size: 22px;
}

.promotion-payment-box .payment-status {
  margin-top: 0;
  min-width: 150px;
  text-align: center;
}

.promotion-payment-box .solid-button,
.promotion-payment-box .outline-button {
  width: auto;
  margin-top: 0;
  white-space: nowrap;
}

.dashboard-locked {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(0, 140, 207, 0.18);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.partner-login-locked {
  max-width: 760px;
  padding: 38px 34px;
  border: 1px solid rgba(0, 140, 207, 0.3);
  background:
    radial-gradient(circle at 82% 10%, rgba(21, 153, 223, 0.28), transparent 28%),
    linear-gradient(180deg, #f3fbff 0%, #ffffff 72%);
  box-shadow: 0 28px 72px rgba(0, 112, 174, 0.2);
}

.partner-login-locked .eyebrow {
  margin: 0;
  color: var(--blue-deep);
}

.dashboard-locked h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
}

.partner-login-locked h2 {
  color: var(--ink);
  text-transform: uppercase;
}

.payment-status {
  margin-top: 16px;
  display: block !important;
  border-bottom: 0 !important;
}

.payment-status.paid {
  color: #0f7d42;
  background: rgba(32, 199, 102, 0.12);
}

.download-invoice {
  width: 100%;
  margin-top: 12px;
  border-color: rgba(0, 140, 207, 0.36);
  color: var(--blue-deep);
  background: var(--white);
}

.service-search-panel {
  margin: 12px 0 18px;
}

.upload-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.rm-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(32, 199, 102, 0.22);
  border-radius: 8px;
  background: rgba(32, 199, 102, 0.08);
}

.promotion-rm-support {
  grid-column: 1 / -1;
}

.rm-support strong,
.rm-support span {
  display: block;
}

.rm-support strong {
  color: var(--ink);
  font-size: 18px;
}

.rm-support span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.rm-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 16px 28px rgba(18, 140, 74, 0.28);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.rm-whatsapp-button::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: currentColor;
  clip-path: path("M12 1.7C6.5 1.7 2 6.1 2 11.6c0 1.9.5 3.7 1.5 5.3L2.4 22l5.3-1.4c1.5.8 3.2 1.2 5 1.2 5.5 0 10-4.4 10-9.9S17.5 1.7 12 1.7Zm0 18.3c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.1.8.8-3-.2-.3c-.9-1.3-1.3-2.8-1.3-4.5 0-4.6 3.8-8.3 8.4-8.3s8.4 3.7 8.4 8.3-3.7 8.4-8.3 8.4Zm4.8-6.2c-.3-.1-1.6-.8-1.8-.9-.2-.1-.4-.1-.6.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.6-1.5-1.9-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2.1-.4 0-.5-.1-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.6-.7 1.8-1.3.2-.6.2-1.2.2-1.3-.1-.1-.3-.2-.6-.4Z");
}

.rm-whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(18, 140, 74, 0.34);
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #20c766, #0f9c58);
  box-shadow: 0 16px 32px rgba(32, 199, 102, 0.3);
  font-weight: 950;
}

.whatsapp::before {
  content: "";
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  background: currentColor;
  clip-path: path("M12 1.7C6.5 1.7 2 6.1 2 11.6c0 1.9.5 3.7 1.5 5.3L2.4 22l5.3-1.4c1.5.8 3.2 1.2 5 1.2 5.5 0 10-4.4 10-9.9S17.5 1.7 12 1.7Zm0 18.3c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.1.8.8-3-.2-.3c-.9-1.3-1.3-2.8-1.3-4.5 0-4.6 3.8-8.3 8.4-8.3s8.4 3.7 8.4 8.3-3.7 8.4-8.3 8.4Zm4.8-6.2c-.3-.1-1.6-.8-1.8-.9-.2-.1-.4-.1-.6.1-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-.3-.1-1.1-.4-2.1-1.3-.8-.7-1.3-1.6-1.5-1.9-.2-.3 0-.4.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2.1-.4 0-.5-.1-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-1 1-1 2.4s1 2.8 1.2 3c.1.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.6-.7 1.8-1.3.2-.6.2-1.2.2-1.3-.1-.1-.3-.2-.6-.4Z");
}

footer {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.05fr);
  align-items: start;
  gap: clamp(36px, 7vw, 110px);
  padding: 58px clamp(28px, 5vw, 78px) 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #030609;
  color: var(--white);
}

footer p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.62);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(216,226,236,0.76);
  font-weight: 850;
}

.footer-vision {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-vision span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #1599df;
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-vision p {
  margin: 0;
  max-width: 720px;
  color: rgba(216,226,236,0.72);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.footer-links h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 20px;
}

.footer-links a {
  display: block;
  margin-bottom: 18px;
  color: rgba(216,226,236,0.78);
  font-size: 18px;
  font-weight: 760;
}

.footer-links a:hover {
  color: #1599df;
}

@media (max-width: 1120px) {
  .topbar { grid-template-columns: auto 1fr auto; }
  .menu-button { display: inline-grid; justify-self: end; }
  .search-icon, .login-chip, .nav { display: none; }
  .topbar.open .nav,
  .topbar.open .login-chip {
    display: flex;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
  }
  .home-layout,
  .hero-split,
  .split,
  .services-browser,
  .market-showcase,
  .market-live-preview,
  .promotion-workspace,
  .promotion-layout,
  .promotion-full-content,
  .blog-intro-panel,
  .brand-partnership-home,
  .partner-referral-card,
  .partner-type-filter-row,
  .gpt-workspace,
  .review-hero-layout,
  .google-review-layout,
  .login-modal-grid,
  footer { grid-template-columns: 1fr; }
  .promotion-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-brand-grid,
  .professional-partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .professional-access-panel.partner-auth-shell { grid-template-columns: 1fr; }
  .professional-access-grid { grid-template-columns: 1fr; }
  .professional-partner-form:first-child,
  .professional-partner-form:last-child {
    border-left: 1px solid rgba(0, 140, 207, 0.18);
    border-radius: 8px;
  }
  .partner-auth-shell .professional-partner-form:first-child,
  .partner-auth-shell .professional-partner-form:last-child {
    border-left: 0;
  }
  .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .write-review-panel { position: static; }
  .service-category-panel { position: static; }
  .category-list {
    display: flex;
    max-height: none;
    overflow-x: auto;
  }
  .category-list button {
    flex: 0 0 230px;
  }
  .five-grid,
  .four-grid,
  .card-grid,
  .service-grid,
  .market-grid,
  .social-grid,
  .review-grid,
  .promoted-grid,
  .review-section-tabs,
  .video-review-row,
  .youtube-frame-grid,
  .footer-links,
  .blog-grid,
  .blog-intro-points,
  .why-doc-grid,
  .state-grid,
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid,
  .home-category-strip,
  .live-counters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .topbar { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand strong {
    padding: 0;
    font-size: 20px;
  }
  .page-hero { padding-top: 58px; }
  h1,
  .home-hero h1 {
    font-size: clamp(32px, 12vw, 54px);
    overflow-wrap: anywhere;
  }
  .section-head { display: block; }
  .market-listing-head { display: grid; align-items: start; }
  .five-grid,
  .four-grid,
  .card-grid,
  .service-grid,
  .market-grid,
  .social-grid,
  .review-grid,
  .promoted-grid,
  .review-section-tabs,
  .video-review-row,
  .youtube-frame-grid,
  .blog-grid,
  .blog-intro-points,
  .why-doc-grid,
  .state-grid,
  .directory-grid,
  .offer-grid,
  .home-category-strip,
  .live-counters,
  .flow,
  .stats,
  .dashboard-layout,
  .status-top,
  .invoice-box,
  .login-form,
  .checkout-layout,
  .checkout-fields,
  .coupon-row,
  .service-summary,
  .service-detail-columns,
  .promotion-plan-grid,
  .blog-gallery { grid-template-columns: 1fr; }
  .rm-support { display: grid; }
  .bill-summary { position: static; }
  .product-table { min-width: 520px; }
  .product-table tbody td { font-size: 14px; }
  .blog-cta { display: grid; }
  .blog-cta .solid-button { width: 100%; }
  .youtube-feature { grid-template-columns: 1fr; }
  .google-feed-head { display: block; }
  .filter-tabs { justify-content: start; margin-top: 14px; }
  .google-review-card { grid-template-columns: 1fr; }
  .review-actions .solid-button,
  .review-actions .outline-button { width: 100%; }
  .service-modal-backdrop { padding: 10px; }
  .service-modal { max-height: 92vh; }
  .blog-thumb { min-height: 220px; padding: 24px; }
  .blog-thumb span { font-size: 13px; }
  .blog-thumb strong { font-size: clamp(17px, 5.6vw, 25px); }
  .blog-card-copy { padding: 24px; }
  .gpt-message { max-width: 100%; }
  .gpt-composer { grid-template-columns: 1fr; }
  .gpt-sidebar { display: none; }
  .gpt-workspace,
  .gpt-chat-shell { min-height: 680px; }
  .gpt-thread { padding: 22px 14px; }
  .gpt-suggestions,
  .gpt-answer-grid { grid-template-columns: 1fr; }
  .gpt-message { padding: 14px; grid-template-columns: 34px minmax(0, 1fr); }
  .gpt-avatar { width: 34px; height: 34px; }
  .nav-item { width: auto; }
  .topbar.open .nav-dropdown { display: none; }
  .full-blog-cover { min-height: 300px; }
  .full-blog-cover h1 { font-size: clamp(28px, 8.5vw, 41px); }
  .full-blog-intro .badge { font-size: 14px; }
  .read-more-link { width: 100%; }
  .hero-brand-card { min-height: 260px; }
  .blog-intro-panel h2,
  .brand-partnership-copy h2,
  .brand-partnership-copy p:not(.eyebrow) { white-space: normal; }
  .moving-brand-card { width: 190px; min-height: 100px; }
  .partner-brand-card {
    width: 190px;
    flex-basis: 190px;
  }
  .partner-brand-grid,
  .professional-partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .professional-access-panel.partner-auth-shell { grid-template-columns: 1fr; }
  .professional-access-grid { grid-template-columns: 1fr; }
  .professional-partner-form:first-child,
  .professional-partner-form:last-child {
    border-left: 1px solid rgba(0, 140, 207, 0.18);
    border-radius: 8px;
  }
  .partner-auth-shell .professional-partner-form:first-child,
  .partner-auth-shell .professional-partner-form:last-child {
    border-left: 0;
  }
  .home-hero .glossy-console { transform: none; }
  .home-logo-orbit { width: 166px; height: 166px; }
  .home-logo-orbit .console-logo { width: 132px; height: 132px; }
  .hero-impact.landscape { border-radius: 18px; }
  .hero-impact > div { grid-template-columns: 1fr; }
  .hero-impact.landscape .impact-heading { align-items: flex-start; }
  .hero-impact.landscape .impact-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-impact.landscape article { min-height: 74px; padding: 10px 8px; }
  .hero-impact.landscape article:nth-child(2) { border-right: 0; }
  .hero-logo-orbit { width: 166px; height: 166px; }
  .hero-logo-orbit img { width: 132px; height: 132px; }
  .hero-impact.landscape article:last-child { border-right: 0; }
  .hero-impact article:last-child { grid-column: auto; }
  .hero-impact.landscape article:last-child { grid-column: 1 / -1; }
  .hero-impact.landscape strong { font-size: clamp(28px, 10vw, 42px); }
  .review-logo-stage { min-height: 300px; }
  .logo-orbit { width: 166px; height: 166px; }
  .logo-orbit img { width: 132px; height: 132px; }
  .whatsapp { right: 12px; bottom: 14px; max-width: calc(100vw - 24px); }
}
