/* Original service demonstrations */
.geo-engine-demo,
.local-map-demo,
.google-intent-demo,
.social-demand-demo,
.web-studio-demo,
.crm-automation-demo,
.growth-command-demo {
  min-height: 560px;
}
.geo-engine-demo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 8%, rgba(143, 201, 236, 0.44), transparent 28%),
    linear-gradient(145deg, #f9fcff, #e9f4ff);
}

.geo-engine-header,
.crm-demo-head,
.growth-command-head {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(7, 26, 50, 0.54);
  font-size: 9px;
  letter-spacing: 0.11em;
}

.geo-engine-header > div,
.crm-demo-head > div,
.growth-command-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.geo-live-dot,
.crm-status-dot,
.growth-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(8, 116, 203, 0.34);
  animation: servicePulse 2s infinite;
}

.geo-engine-query {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 14px;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border: 1px solid rgba(7, 26, 50, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 11px 26px rgba(7, 26, 50, 0.07);
}

.geo-engine-query > span {
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.geo-engine-query p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: rgba(7, 26, 50, 0.78);
  font-size: 12px;
  white-space: nowrap;
  animation: serviceQueryType 6s steps(56, end) infinite;
}

.geo-engine-query i {
  width: 2px;
  height: 17px;
  background: var(--blue);
  animation: serviceCursor 0.8s steps(1) infinite;
}

.geo-engine-board {
  flex: 1;
  min-height: 350px;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(7, 26, 50, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(7, 26, 50, 0.08);
}

.geo-engine-tabs {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px;
  border-right: 1px solid rgba(7, 26, 50, 0.09);
  background: rgba(240, 247, 253, 0.84);
}

.geo-engine-tabs > span {
  min-height: 51px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(7, 26, 50, 0.63);
  font-size: 9px;
  animation: engineSelect 6s infinite;
  animation-delay: var(--engine-delay);
}

.geo-engine-tabs b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 116, 203, 0.2);
  border-radius: 8px;
  background: white;
  color: var(--blue);
  font-size: 8px;
}

.geo-engine-answer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.geo-engine-answer::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 26%;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(143, 201, 236, 0.18), transparent);
  animation: answerScan 6s ease-in-out infinite;
}

.geo-answer-head {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.geo-answer-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e2f1ff;
  color: var(--blue);
  font-size: 18px;
}

.geo-answer-head > div {
  display: grid;
  gap: 4px;
}

.geo-answer-head small,
.geo-engine-impact small {
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.geo-answer-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.geo-answer-head em {
  padding: 5px 8px;
  border: 1px solid rgba(255, 189, 62, 0.35);
  border-radius: 999px;
  background: #fff5d6;
  color: #9e6400;
  font-size: 8px;
  font-style: normal;
}

.geo-engine-answer > p {
  position: relative;
  margin: 25px 0 0;
  color: rgba(7, 26, 50, 0.68);
  font-size: 12px;
  line-height: 1.68;
}

.geo-citations {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.geo-citations span {
  padding: 7px 9px;
  border: 1px solid rgba(8, 116, 203, 0.13);
  border-radius: 999px;
  background: #f3f9ff;
  color: rgba(7, 26, 50, 0.62);
  font-size: 8px;
}

.geo-engine-impact {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 17px;
  border: 1px solid rgba(7, 26, 50, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.geo-engine-impact > div {
  display: grid;
  gap: 4px;
}

.geo-engine-impact > div:last-child {
  text-align: right;
}

.geo-engine-impact strong {
  font-size: 10px;
}

.geo-engine-impact > span {
  color: var(--yellow);
  font-size: 22px;
}

.geo-engine-stage {
  position: relative;
  min-width: 0;
  min-height: 350px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.ai-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.ai-logo > span {
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.ai-logo--chatgpt {
  color: #111;
}

.ai-logo--chatgpt > span {
  mask-image: url("/assets/ai-logos/chatgpt.svg");
}

.ai-logo--claude {
  color: #d97757;
}

.ai-logo--claude > span {
  mask-image: url("/assets/ai-logos/claude.svg");
}

.ai-logo--perplexity {
  color: #20808d;
}

.ai-logo--perplexity > span {
  mask-image: url("/assets/ai-logos/perplexity.svg");
}

.ai-logo--gemini > span {
  background: linear-gradient(135deg, #1a73e8 10%, #8e6cef 54%, #d96570 100%);
  mask-image: url("/assets/ai-logos/gemini.svg");
}

.ai-logo--google > span {
  background: transparent url("/assets/ai-logos/google.svg") center / contain no-repeat;
}

.geo-engine-tabs > span {
  animation: engineTabCycle 20s linear infinite;
  animation-delay: var(--engine-delay);
}

.geo-engine-tabs .ai-logo {
  width: 27px;
  height: 27px;
  padding: 5px;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 8px;
  background: white;
}

.geo-engine-tabs .ai-logo > span {
  width: 16px;
  height: 16px;
}

.ai-result-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 16px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  animation: enginePanelCycle 20s ease-in-out infinite;
  animation-delay: var(--engine-delay);
}

.ai-panel-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(7, 26, 50, 0.09);
}

.ai-panel-brand .ai-logo {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 9px;
  background: #f6f7f7;
}

.ai-panel-brand .ai-logo > span {
  width: 20px;
  height: 20px;
}

.ai-panel-brand > div {
  display: grid;
  gap: 1px;
}

.ai-panel-brand strong {
  font-size: 13px;
}

.ai-panel-brand small {
  color: rgba(7, 26, 50, 0.5);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-result-disclaimer {
  margin-top: auto;
  padding-top: 8px;
  color: rgba(7, 26, 50, 0.42);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.chatgpt-answer,
.claude-answer,
.perplexity-answer,
.gemini-answer {
  min-height: 0;
  padding: 17px 3px 8px;
  color: rgba(7, 26, 50, 0.77);
  font-size: 10px;
  line-height: 1.55;
}

.chatgpt-answer > p,
.claude-answer > p,
.perplexity-answer > p,
.gemini-answer > p {
  margin: 0;
}

.chatgpt-answer h4,
.perplexity-answer h4 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 10px;
}

.chatgpt-answer article {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #d9dfdd;
  border-radius: 10px;
  background: #f7f8f7;
}

.chatgpt-answer article > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: white;
  font-size: 8px;
}

.chatgpt-answer article > div {
  display: grid;
  gap: 2px;
}

.chatgpt-answer article strong {
  color: var(--ink);
  font-size: 11px;
}
.chatgpt-answer article small {
  color: rgba(7, 26, 50, 0.5);
  font-size: 8px;
}

.ai-answer-note {
  margin-top: 11px !important;
  color: rgba(7, 26, 50, 0.5);
  font-size: 8px;
}

.ai-result-panel--claude {
  background: #fbf8f2;
}

.ai-result-panel--claude .ai-panel-brand {
  border-bottom-color: rgba(147, 86, 56, 0.16);
}

.claude-checks {
  display: grid;
  gap: 6px;
  margin-top: 13px;
}

.claude-checks span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.claude-checks i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2e3d7;
  color: #ad5b3d;
  font-size: 8px;
  font-style: normal;
}

.claude-pick {
  margin-top: 14px;
  padding: 11px 13px;
  border-left: 3px solid #d97757;
  border-radius: 0 9px 9px 0;
  background: white;
}

.claude-pick small {
  color: #a65d43;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.claude-pick strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
}

.claude-pick p {
  margin: 3px 0 0;
  color: rgba(7, 26, 50, 0.55);
  font-size: 8px;
}

.ai-result-panel--perplexity {
  background:
    linear-gradient(90deg, rgba(32, 128, 141, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(32, 128, 141, 0.04) 1px, transparent 1px),
    #fbfdfd;
  background-size: 24px 24px;
}

.perplexity-answer sup {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  border-radius: 3px;
  background: #e1f0f2;
  color: #176d77;
  font-size: 7px;
}

.perplexity-answer ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
}

.perplexity-sources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 13px;
}

.perplexity-sources span {
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(32, 128, 141, 0.15);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.85);
  color: rgba(7, 26, 50, 0.6);
  font-size: 7px;
}

.perplexity-sources b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #20808d;
  color: white;
  font-size: 7px;
}

.ai-result-panel--gemini {
  background:
    radial-gradient(circle at 82% 12%, rgba(142, 108, 239, 0.12), transparent 33%),
    #fbfcff;
}

.gemini-pick {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  margin-top: 13px;
  padding: 12px 13px;
  border: 1px solid rgba(80, 103, 205, 0.15);
  border-radius: 12px;
  background: linear-gradient(135deg, #f7faff, #f8f4ff);
}

.gemini-pick > div {
  display: grid;
  gap: 3px;
}

.gemini-pick small {
  color: #5e65b8;
  font-size: 7px;
  letter-spacing: 0.09em;
}

.gemini-pick strong {
  color: var(--ink);
  font-size: 12px;
}

.gemini-pick p {
  margin: 0;
  color: rgba(7, 26, 50, 0.55);
  font-size: 8px;
}

.gemini-pick > span {
  display: grid;
  align-content: center;
  justify-items: center;
  border-left: 1px solid rgba(80, 103, 205, 0.13);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.gemini-pick > span i {
  color: #f0aa16;
  font-size: 7px;
  font-style: normal;
  letter-spacing: -0.08em;
}

.gemini-pick > span small {
  margin-top: 2px;
  color: rgba(7, 26, 50, 0.42);
  font-size: 6px;
  letter-spacing: 0;
}

.gemini-factors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}

.gemini-factors span {
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 14px rgba(70, 88, 162, 0.06);
  color: rgba(7, 26, 50, 0.52);
  font-size: 7px;
}

.gemini-factors b {
  color: #4c64bd;
  font-size: 8px;
}

.ai-result-panel--google {
  padding: 0;
  background: white;
}

.google-ai-shell {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 18px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.google-ai-top {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.google-ai-wordmark {
  font-size: 18px;
  letter-spacing: -0.07em;
}

.google-ai-wordmark span:nth-child(1),
.google-ai-wordmark span:nth-child(4) {
  color: #4285f4;
}

.google-ai-wordmark span:nth-child(2),
.google-ai-wordmark span:nth-child(6) {
  color: #ea4335;
}

.google-ai-wordmark span:nth-child(3) {
  color: #fbbc05;
}

.google-ai-wordmark span:nth-child(5) {
  color: #34a853;
}

.google-ai-search {
  min-height: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 17px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid #dfe1e5;
  border-radius: 20px;
  color: #3c4043;
  font-size: 8px;
  box-shadow: 0 1px 4px rgba(32, 33, 36, 0.09);
}

.google-ai-search b {
  color: #70757a;
  font-size: 13px;
  font-weight: 400;
}

.google-ai-search i {
  width: 14px;
  height: 14px;
  display: block;
  background: url("/assets/ai-logos/google.svg") center / contain no-repeat;
}

.google-ai-nav {
  display: flex;
  gap: 16px;
  margin: 10px 0 0 76px;
  color: #5f6368;
  font-size: 7px;
}

.google-ai-nav span:first-child {
  color: #1a73e8;
}

.google-ai-overview {
  margin-top: 10px;
  padding: 13px 15px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(60, 64, 67, 0.07);
}

.google-ai-overview > header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gemini-spark {
  width: 18px;
  height: 18px;
  display: block;
  background: linear-gradient(135deg, #1a73e8, #8e6cef, #d96570);
  mask: url("/assets/ai-logos/gemini.svg") center / contain no-repeat;
}

.google-ai-overview > header strong {
  color: #202124;
  font-size: 11px;
}

.google-ai-overview > header small {
  padding: 3px 5px;
  border-radius: 4px;
  background: #f1f3f4;
  color: #5f6368;
  font-size: 6px;
}

.google-ai-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(120px, 0.7fr);
  gap: 15px;
  margin-top: 10px;
  color: #3c4043;
  font-size: 8px;
  line-height: 1.48;
}

.google-ai-content p {
  margin: 0 0 8px;
}

.google-ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.google-ai-chips span {
  padding: 5px 7px;
  border-radius: 10px;
  background: #eef3fc;
  color: #174ea6;
  font-size: 6px;
}

.google-ai-content aside {
  display: grid;
  gap: 5px;
}

.google-ai-content article {
  display: grid;
  gap: 1px;
  padding: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  background: #f8fafd;
}

.google-ai-content article b {
  color: #202124;
  font-size: 7px;
}

.google-ai-content article span {
  color: #5f6368;
  font-size: 6px;
}

.google-ai-overview > footer {
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid #edf0f2;
  color: #70757a;
  font-size: 6px;
}

.ai-result-panel--google > .ai-result-disclaimer {
  position: absolute;
  right: 15px;
  bottom: 6px;
}

@keyframes engineTabCycle {
  0%,
  18% {
    border-color: rgba(8, 116, 203, 0.28);
    background: white;
    color: var(--ink);
    box-shadow: 0 6px 15px rgba(7, 26, 50, 0.06);
  }

  20%,
  100% {
    border-color: transparent;
    background: transparent;
    color: rgba(7, 26, 50, 0.55);
    box-shadow: none;
  }
}

@keyframes enginePanelCycle {
  0% {
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
  }

  2%,
  17% {
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
  }

  19%,
  100% {
    z-index: 1;
    opacity: 0;
    transform: translateY(-5px);
  }
}

.local-map-demo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(145deg, #f8fbfd, #eaf4f7);
}

.local-map-demo::after {
  display: none;
}

.local-search {
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 10px;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 13px;
  background: white;
  box-shadow: 0 10px 24px rgba(7, 26, 50, 0.07);
}

.local-search > span {
  color: var(--blue);
  font-size: 21px;
}

.local-search p {
  margin: 0;
  color: rgba(7, 26, 50, 0.74);
  font-size: 12px;
}

.local-search i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: servicePulseYellow 2s infinite;
}

.local-map-body {
  flex: 1;
  min-height: 444px;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 50, 0.1);
  border-radius: 18px;
  background: white;
}

.local-listings {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-right: 1px solid rgba(7, 26, 50, 0.09);
  background: rgba(252, 251, 248, 0.95);
}

.local-listings-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
}

.local-listings-label small {
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.local-listings-label span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f5ff;
  color: var(--blue);
  font-size: 7px;
}

.local-listing {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  padding: 12px 10px;
  border: 1px solid rgba(7, 26, 50, 0.08);
  border-radius: 12px;
  background: white;
  opacity: 0.58;
}

.local-listing--featured {
  border-color: rgba(8, 116, 203, 0.23);
  box-shadow: 0 10px 24px rgba(8, 116, 203, 0.09);
  opacity: 1;
  animation: featuredListing 3.2s ease-in-out infinite;
}

.local-rank {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e3f1ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.local-listing--featured .local-rank {
  background: var(--blue);
  color: white;
}

.local-listing > div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.local-listing strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
}

.local-listing p {
  margin: 0;
  color: #d18b00;
  font-size: 8px;
}

.local-listing p em {
  margin-left: 3px;
  color: rgba(7, 26, 50, 0.48);
  font-style: normal;
}

.local-listing small {
  color: var(--blue);
  font-size: 7px;
}

.local-map-canvas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 26, 50, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 50, 0.045) 1px, transparent 1px),
    #edf3ee;
  background-size: 34px 34px;
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 18px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  background: #d8ded8;
  box-shadow: 0 0 0 1px rgba(7, 26, 50, 0.05);
}

.map-road--one {
  left: -20%;
  top: 34%;
  width: 145%;
  transform: rotate(23deg);
}

.map-road--two {
  left: -8%;
  top: 60%;
  width: 125%;
  transform: rotate(-17deg);
}

.map-road--three {
  left: 43%;
  top: -8%;
  width: 18px;
  height: 120%;
  transform: rotate(9deg);
}

.map-water {
  position: absolute;
  right: -15%;
  bottom: -20%;
  width: 68%;
  height: 46%;
  border-radius: 50% 0 0 0;
  background: rgba(143, 201, 236, 0.45);
}

.map-neighbourhood {
  position: absolute;
  z-index: 2;
  color: rgba(7, 26, 50, 0.34);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-neighbourhood--one {
  left: 9%;
  top: 19%;
}

.map-neighbourhood--two {
  right: 13%;
  top: 27%;
}

.map-neighbourhood--three {
  right: 11%;
  bottom: 25%;
}

.map-rank-pin {
  position: absolute;
  z-index: 3;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 6px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--blue);
  box-shadow: 0 9px 21px rgba(7, 26, 50, 0.2);
  animation: mapPinBounce 3s ease-in-out infinite;
}

.map-rank-pin b {
  transform: rotate(45deg);
  color: white;
  font-size: 9px;
}

.map-rank-pin--one {
  left: 47%;
  top: 29%;
}

.map-rank-pin--two {
  left: 19%;
  top: 58%;
  transform: rotate(-45deg) scale(0.8);
  animation-delay: 0.6s;
}

.map-rank-pin--three {
  right: 13%;
  top: 49%;
  transform: rotate(-45deg) scale(0.72);
  animation-delay: 1.2s;
}

.map-coverage {
  position: absolute;
  z-index: 4;
  left: 16px;
  right: 16px;
  bottom: 15px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(250, 248, 244, 0.87);
  box-shadow: 0 12px 26px rgba(7, 26, 50, 0.1);
  backdrop-filter: blur(10px);
}

.map-coverage small {
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.map-coverage strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  line-height: 1.06;
}

.google-intent-demo {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 22px;
  background:
    radial-gradient(circle at 87% 10%, rgba(255, 189, 62, 0.17), transparent 30%),
    var(--ink);
  color: white;
}

.google-demo-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 15px;
}

.google-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
}

.google-search-box {
  min-height: 49px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
}

.google-search-box p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  font-size: 11px;
  white-space: nowrap;
  animation: serviceQueryType 5.5s steps(36, end) infinite;
}

.google-search-box span {
  color: var(--blue);
  font-size: 18px;
}

.google-demo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 13px;
}

.google-serp,
.google-conversion-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.google-serp > small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.google-ad-result,
.google-organic-result {
  display: grid;
  gap: 7px;
  margin-top: 11px;
  padding: 15px;
  border-radius: 12px;
  background: white;
  color: var(--ink);
}

.google-ad-result {
  position: relative;
  border: 1px solid rgba(255, 189, 62, 0.42);
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.18);
  animation: adResultGlow 3s ease-in-out infinite;
}

.google-ad-result > span,
.google-organic-result > span {
  color: rgba(7, 26, 50, 0.48);
  font-size: 7px;
}

.google-ad-result > strong,
.google-organic-result > strong {
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.05;
}

.google-ad-result > p {
  margin: 0;
  color: rgba(7, 26, 50, 0.62);
  font-size: 8px;
  line-height: 1.45;
}

.google-ad-result > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.google-ad-result b {
  padding: 4px 6px;
  border-radius: 5px;
  background: #eaf5ff;
  color: var(--blue);
  font-size: 7px;
}

.google-organic-result {
  margin-top: 9px;
  opacity: 0.42;
}

.conversion-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.conversion-head small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.conversion-head span {
  color: var(--yellow);
  font-size: 7px;
}

.google-conversion-panel ol {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.google-conversion-panel li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.google-conversion-panel li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(143, 201, 236, 0.16);
  color: var(--sky);
  font-size: 9px;
}

.google-conversion-panel li > div {
  display: grid;
  gap: 3px;
}

.google-conversion-panel li strong {
  font-size: 9px;
}

.google-conversion-panel li small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
}

.conversion-result {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  padding: 11px;
  border: 1px solid rgba(255, 189, 62, 0.32);
  border-radius: 11px;
  background: rgba(255, 189, 62, 0.1);
}

.conversion-result > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}

.conversion-result > div {
  display: grid;
  gap: 3px;
}

.conversion-result small {
  color: var(--yellow);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.conversion-result strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  line-height: 1.08;
}

.google-metric-rail {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.google-metric-rail > span {
  display: grid;
  gap: 3px;
}

.google-metric-rail small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
}

.google-metric-rail strong {
  font-size: 9px;
}

.google-metric-rail i {
  height: 1px;
  background: linear-gradient(90deg, var(--sky), var(--yellow));
}

.google-intent-demo.google-serp-demo {
  gap: 0;
  padding: 0;
  background: #fff;
  color: #202124;
  font-family: Arial, Helvetica, sans-serif;
}

.google-serp-header {
  min-height: 73px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 22px 28px;
  align-items: center;
  gap: 13px;
  padding: 15px 19px 9px;
}

.google-serp-wordmark {
  font-size: 22px;
  white-space: nowrap;
}

.google-serp-search {
  min-width: 0;
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17px 17px 17px 17px;
  align-items: center;
  gap: 9px;
  padding: 0 14px 0 17px;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  box-shadow: 0 1px 5px rgba(32, 33, 36, 0.14);
}

.google-serp-search p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: #202124;
  font-size: 11px;
  white-space: nowrap;
  animation: serviceQueryType 5.5s steps(26, end) infinite;
}

.google-serp-close {
  color: #5f6368;
  font-size: 18px;
  font-weight: 300;
}

.google-serp-mic,
.google-serp-lens,
.google-serp-search-icon {
  width: 15px;
  height: 15px;
  display: block;
  position: relative;
}

.google-serp-mic::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: 1.5px solid #4285f4;
  border-radius: 5px;
}

.google-serp-mic::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 9px;
  height: 6px;
  border-bottom: 1.5px solid #34a853;
  border-radius: 0 0 8px 8px;
}

.google-serp-lens {
  border: 2px solid #4285f4;
  border-radius: 4px;
}

.google-serp-lens::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 5px;
  height: 5px;
  border: 1.5px solid #ea4335;
  border-radius: 50%;
}

.google-serp-search-icon {
  border: 2px solid #4285f4;
  border-radius: 50%;
  transform: scale(0.72);
}

.google-serp-search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  transform: rotate(45deg);
  border-radius: 2px;
  background: #4285f4;
}

.google-serp-apps {
  width: 18px;
  overflow: hidden;
  color: #5f6368;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 0.55;
  word-break: break-all;
}

.google-serp-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #8c6d57;
  color: white;
  font-size: 10px;
}

.google-serp-nav {
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 0 22px 0 110px;
  color: #5f6368;
  font-size: 8px;
}

.google-serp-nav span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.google-serp-nav .is-active {
  border-bottom-color: #1a73e8;
  color: #1a73e8;
}

.google-serp-nav .google-serp-tools {
  margin-left: auto;
}

.google-serp-rule {
  height: 1px;
  background: #ebebeb;
}

.google-serp-count {
  padding: 8px 0 3px 110px;
  color: #70757a;
  font-size: 7px;
}

.google-real-results {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(175px, 0.72fr);
  gap: 24px;
  padding: 8px 22px 13px 110px;
}

.google-results-column {
  min-width: 0;
}

.google-sponsored-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  font-size: 8px;
}

.google-sponsored-label strong {
  color: #202124;
}

.google-sponsored-label span {
  color: #70757a;
}

.google-search-ad {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 0 0 11px;
  border-bottom: 1px solid #ebebeb;
}

.google-search-ad header,
.google-organic-card header {
  min-width: 0;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.google-ad-favicon,
.google-organic-favicon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b6b4f;
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.google-ad-favicon--secondary {
  background: #6a5c91;
}

.google-organic-favicon {
  background: #eef3fc;
  color: #1a73e8;
}

.google-search-ad header > div,
.google-organic-card header > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.google-search-ad header strong,
.google-organic-card header strong {
  overflow: hidden;
  color: #202124;
  font-size: 8px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-search-ad header small,
.google-organic-card header small {
  overflow: hidden;
  color: #4d5156;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-search-ad header > b,
.google-organic-card header > b {
  color: #5f6368;
  font-size: 14px;
  font-weight: 400;
}

.google-search-ad > a,
.google-organic-card > a {
  color: #1a0dab;
  font-size: 13px;
  line-height: 1.25;
}

.google-search-ad > a:hover,
.google-organic-card > a:hover {
  text-decoration: underline;
}

.google-search-ad > p,
.google-organic-card > p {
  margin: 0;
  color: #4d5156;
  font-size: 8px;
  line-height: 1.45;
}

.google-ad-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #4d5156;
  font-size: 7px;
}

.google-ad-details b,
.google-local-rating span {
  color: #f9ab00;
  letter-spacing: -0.08em;
}

.google-ad-sitelinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  margin-top: 2px;
}

.google-ad-sitelinks a {
  color: #1a0dab;
  font-size: 8px;
}

.google-ad-actions {
  display: flex;
  gap: 6px;
  margin-top: 2px;
}

.google-ad-actions button {
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid #dadce0;
  border-radius: 13px;
  background: white;
  color: #1a73e8;
  font-size: 7px;
}

.google-search-ad--featured::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.35), transparent);
  animation: googleAdScan 3.4s ease-in-out infinite;
}

.google-search-ad--secondary {
  gap: 4px;
  padding-top: 9px;
}

.google-search-ad--secondary > p {
  max-width: 92%;
}

.google-organic-card {
  display: grid;
  gap: 5px;
  padding-top: 10px;
}

.google-local-panel {
  align-self: start;
  overflow: hidden;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: white;
}

.google-local-photo {
  height: 79px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  background: #dfe7ec;
}

.google-window-shape {
  display: block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 44%),
    linear-gradient(180deg, #8fc5e5 0 48%, #d3e5d5 48% 100%);
}

.google-window-shape::before,
.google-window-shape::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
}

.google-window-shape::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
}

.google-window-shape::after {
  left: 0;
  right: 0;
  top: 52%;
  height: 3px;
}

.google-window-shape--one {
  grid-row: 1 / 3;
}

.google-local-copy {
  padding: 11px 12px 12px;
}

.google-local-copy > small {
  color: #70757a;
  font-size: 6px;
}

.google-local-copy h4 {
  margin: 3px 0 4px;
  color: #202124;
  font-size: 13px;
  font-weight: 400;
}

.google-local-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4d5156;
  font-size: 7px;
}

.google-local-rating a {
  color: #1a0dab;
}

.google-local-copy > p {
  margin: 6px 0;
  color: #4d5156;
  font-size: 7px;
}

.google-local-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 7px 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.google-local-buttons button {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 2px;
  border: 0;
  background: transparent;
  color: #1a73e8;
  font-size: 12px;
}

.google-local-buttons small {
  color: #1a73e8;
  font-size: 6px;
}

.google-local-copy dl {
  display: grid;
  gap: 4px;
  margin: 7px 0 0;
  font-size: 7px;
}

.google-local-copy dl > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 5px;
}

.google-local-copy dt {
  color: #202124;
  font-weight: 600;
}

.google-local-copy dd {
  margin: 0;
  color: #4d5156;
}

.google-serp-disclaimer {
  padding: 0 22px 9px 110px;
  color: #9aa0a6;
  font-size: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes googleAdScan {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18%);
  }

  45%,
  70% {
    opacity: 1;
    transform: translateX(18%);
  }
}

.social-demand-demo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 21px;
  background:
    radial-gradient(circle at 87% 12%, rgba(255, 189, 62, 0.35), transparent 30%),
    linear-gradient(145deg, #f7fbff, #fff6e5);
}

.social-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.social-demo-head > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.social-meta-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue);
  color: white;
  font-size: 27px;
  font-weight: 600;
}

.social-demo-head > div > div {
  display: grid;
  gap: 3px;
}

.social-demo-head small {
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.13em;
}

.social-demo-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
}

.social-live {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #b47500;
  font-size: 7px;
}

.social-demo-body {
  flex: 1;
  min-height: 390px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.social-phone-frame {
  width: 190px;
  height: 374px;
  overflow: hidden;
  border: 6px solid var(--ink);
  border-radius: 29px;
  background: white;
  box-shadow: 0 22px 45px rgba(7, 26, 50, 0.17);
  animation: socialPhoneFloat 4s ease-in-out infinite;
}

.social-phone-top {
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 7px;
}

.social-phone-top i {
  width: 43px;
  height: 12px;
  border-radius: 999px;
  background: var(--ink);
}

.social-post {
  display: flex;
  flex-direction: column;
  height: calc(100% - 27px);
  border-top: 1px solid rgba(7, 26, 50, 0.08);
}

.social-post-brand {
  height: 41px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
}

.social-post-brand b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 10px;
}

.social-post-brand span {
  color: rgba(7, 26, 50, 0.45);
  font-size: 7px;
}

.social-post-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 189, 62, 0.65), transparent 28%),
    linear-gradient(145deg, #dff0ff, #fff8e8);
}

.social-post-visual small {
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.social-post-visual strong {
  margin-top: 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 0.92;
}

.social-post-visual span {
  width: fit-content;
  margin-top: 17px;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--yellow);
  font-size: 7px;
  font-weight: 600;
}

.social-post-actions {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  font-size: 11px;
}

.social-journey {
  display: grid;
  grid-template-rows: auto 27px auto 27px auto;
  align-items: center;
}

.social-journey article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(7, 26, 50, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 23px rgba(7, 26, 50, 0.06);
}

.social-journey article > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 116, 203, 0.2);
  border-radius: 50%;
  color: var(--blue);
  font-size: 8px;
}

.social-journey article > div {
  display: grid;
  gap: 4px;
}

.social-journey small {
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.social-journey strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  line-height: 1.08;
}

.social-journey > i {
  width: 1px;
  height: 100%;
  margin-left: 30px;
  background: linear-gradient(var(--blue), var(--yellow));
}

.social-journey-result {
  border-color: rgba(255, 189, 62, 0.38) !important;
  background: rgba(255, 248, 224, 0.88) !important;
}

.social-result-toast {
  min-height: 55px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-left: 210px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 189, 62, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.social-result-toast > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 700;
}

.social-result-toast > div {
  display: grid;
  gap: 3px;
}

.social-result-toast small {
  color: #a16900;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.social-result-toast strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
}

.social-demand-demo.social-feeds-demo {
  gap: 10px;
  padding: 14px;
  background:
    radial-gradient(circle at 92% 8%, rgba(225, 48, 108, 0.08), transparent 26%),
    #eef0f4;
  color: #1c1e21;
  font-family: Arial, Helvetica, sans-serif;
}

.social-feeds-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 5px;
}

.social-feeds-head > div {
  display: flex;
  align-items: center;
}

.social-feeds-head > div > div {
  display: grid;
  gap: 2px;
  margin-left: 9px;
}

.social-feeds-head small {
  color: #1877f2;
  font-size: 6px;
  letter-spacing: 0.12em;
}

.social-feeds-head strong {
  color: #1c1e21;
  font-size: 11px;
}

.social-feeds-head > span {
  color: #6b727b;
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.social-platform-logo {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.social-platform-logo i {
  width: 15px;
  height: 15px;
  display: block;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-platform-logo--facebook {
  background: #1877f2;
  color: white;
}

.social-platform-logo--facebook i {
  mask-image: url("/assets/social-logos/facebook.svg");
}

.social-platform-logo--instagram {
  margin-left: -4px;
  background: linear-gradient(135deg, #7638fa 8%, #d62976 55%, #f7a34b 100%);
  color: white;
}

.social-platform-logo--instagram i {
  mask-image: url("/assets/social-logos/instagram.svg");
}

.social-feed-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(205px, 0.72fr);
  gap: 12px;
}

.facebook-feed-shell,
.instagram-feed-shell {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #d8dbe0;
  background: white;
  box-shadow: 0 9px 26px rgba(30, 37, 46, 0.08);
}

.facebook-feed-shell {
  border-radius: 10px;
}

.facebook-feed-top {
  min-height: 38px;
  display: grid;
  grid-template-columns: 25px minmax(90px, 1fr) auto 23px;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-bottom: 1px solid #e4e6eb;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.facebook-search {
  min-height: 27px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 15px;
  background: #f0f2f5;
  color: #65676b;
  font-size: 7px;
}

.facebook-feed-top nav {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #65676b;
  font-size: 14px;
}

.facebook-feed-top nav span:first-child {
  color: #1877f2;
}

.facebook-feed-top > b {
  color: #65676b;
  font-size: 9px;
  letter-spacing: 0.07em;
}

.facebook-feed-body {
  height: calc(100% - 38px);
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  background: #f0f2f5;
}

.facebook-side-nav {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 3px 0;
}

.facebook-side-nav span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  color: #1c1e21;
  font-size: 6px;
  white-space: nowrap;
}

.facebook-side-nav i {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dce8f8;
  color: #1877f2;
  font-size: 7px;
  font-style: normal;
}

.facebook-ad-card,
.instagram-ad-card {
  min-width: 0;
  align-self: start;
  position: relative;
  overflow: hidden;
  background: white;
}

.facebook-ad-card {
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.11);
}

.social-ad-author {
  min-height: 40px;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 6px 8px 4px;
}

.social-ad-avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c6f56, #5ba176);
  color: white;
  font-size: 7px;
  font-weight: 700;
  box-shadow: 0 0 0 1px #d8dbe0;
}

.social-ad-author > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.social-ad-author strong {
  overflow: hidden;
  color: #1c1e21;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-ad-author small {
  color: #65676b;
  font-size: 6px;
}

.social-ad-author > b {
  color: #65676b;
  font-size: 8px;
  letter-spacing: 0.05em;
}

.facebook-ad-copy {
  margin: 0;
  padding: 3px 9px 7px;
  color: #1c1e21;
  font-size: 7px;
  line-height: 1.35;
}

.window-ad-scene {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ece7de 0 65%, #cfc5b7 65% 69%, #e6ddd1 69% 100%);
}

.window-ad-scene--facebook {
  height: 142px;
}

.window-ad-scene--instagram {
  height: 188px;
}

.window-ad-wall {
  position: absolute;
  right: 0;
  top: 0;
  width: 57%;
  height: 72%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  padding: 7px;
  border-left: 7px solid #f7f3ed;
  border-bottom: 7px solid #f7f3ed;
  background: #f7f3ed;
}

.window-ad-wall span {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), transparent 42%),
    linear-gradient(180deg, #8bc2e5 0 47%, #b3cfb5 47% 70%, #638560 70% 100%);
}

.window-ad-wall span::before {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 0;
  width: 23px;
  height: 45px;
  border-radius: 50% 50% 0 0;
  background: rgba(42, 94, 55, 0.58);
}

.window-ad-copy,
.instagram-creative-copy {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 22px;
  width: 47%;
  display: grid;
  gap: 6px;
}

.window-ad-copy small,
.instagram-creative-copy small {
  color: #0b6b4f;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.window-ad-copy strong,
.instagram-creative-copy strong {
  color: #15352d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 0.93;
}

.window-ad-copy > span,
.instagram-creative-copy > span {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 3px;
  background: #0b6b4f;
  color: white;
  font-size: 5px;
  font-weight: 600;
}

.window-ad-plant {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 28px;
  height: 44px;
  border-radius: 50% 50% 12% 12%;
  background:
    radial-gradient(ellipse at 25% 32%, #4f7b4c 0 23%, transparent 25%),
    radial-gradient(ellipse at 70% 17%, #769f66 0 22%, transparent 24%),
    radial-gradient(ellipse at 67% 54%, #496c42 0 23%, transparent 25%),
    linear-gradient(90deg, transparent 46%, #3c6440 47% 52%, transparent 53%);
  opacity: 0.72;
}

.facebook-ad-link {
  min-height: 45px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  background: #f0f2f5;
}

.facebook-ad-link > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.facebook-ad-link small {
  color: #65676b;
  font-size: 5px;
}

.facebook-ad-link strong {
  overflow: hidden;
  color: #1c1e21;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.facebook-ad-link span {
  color: #65676b;
  font-size: 5px;
}

.facebook-ad-link button {
  min-height: 26px;
  padding: 0 9px;
  border: 0;
  border-radius: 4px;
  background: #e4e6eb;
  color: #1c1e21;
  font-size: 6px;
  font-weight: 600;
}

.facebook-social-proof {
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 9px;
  color: #65676b;
  font-size: 5px;
}

.facebook-social-proof i {
  font-style: normal;
  letter-spacing: -0.3em;
}

.facebook-actions {
  min-height: 29px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e4e6eb;
}

.facebook-actions button {
  border: 0;
  background: white;
  color: #65676b;
  font-size: 6px;
  font-weight: 600;
}

.facebook-reaction-burst {
  position: absolute;
  z-index: 4;
  left: 25px;
  bottom: 22px;
  padding: 5px 7px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  font-size: 10px;
  opacity: 0;
  animation: facebookReaction 6s ease-in-out infinite;
}

.instagram-feed-shell {
  position: relative;
  border-radius: 10px;
}

.instagram-feed-top {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid #efefef;
}

.instagram-feed-top strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.instagram-feed-top > div {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.instagram-stories {
  height: 52px;
  display: flex;
  gap: 7px;
  padding: 5px 7px;
  overflow: hidden;
  border-bottom: 1px solid #efefef;
}

.instagram-stories > span {
  flex: 0 0 36px;
  display: grid;
  justify-items: center;
  gap: 2px;
}

.instagram-stories i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: #f0f2f5;
  color: #65676b;
  font-size: 5px;
  font-style: normal;
  box-shadow: 0 0 0 2px #dd2a7b;
}

.instagram-stories small {
  width: 38px;
  overflow: hidden;
  color: #262626;
  font-size: 5px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-ad-card .social-ad-author {
  min-height: 37px;
  padding: 5px 7px;
}

.instagram-ad-card .social-ad-avatar {
  border-color: white;
  box-shadow: 0 0 0 1.5px #dd2a7b;
}

.window-ad-scene--instagram .window-ad-wall {
  width: 64%;
  height: 100%;
}

.instagram-creative-copy {
  left: 9px;
  top: 27px;
  width: 48%;
}

.instagram-creative-copy strong {
  font-size: 18px;
}

.instagram-ad-cta {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border-bottom: 1px solid #efefef;
  color: #0095f6;
  font-size: 7px;
  font-weight: 600;
}

.instagram-ad-cta b {
  font-size: 15px;
}

.instagram-actions {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  font-size: 14px;
}

.instagram-actions > div {
  display: flex;
  gap: 9px;
}

.instagram-caption {
  display: grid;
  gap: 3px;
  padding: 0 9px 8px;
  color: #262626;
  font-size: 6px;
}

.instagram-caption > strong {
  font-size: 6px;
}

.instagram-caption p {
  margin: 0;
  line-height: 1.35;
}

.instagram-caption p span,
.instagram-caption small {
  color: #8e8e8e;
}

.instagram-heart-burst {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 52%;
  color: white;
  font-size: 54px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  animation: instagramHeart 6s ease-in-out infinite 2.4s;
}

.social-feeds-result {
  min-height: 39px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid #d8dbe0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #4d5156;
  font-size: 6px;
}

.social-feeds-result span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.social-feeds-result b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1877f2;
  color: white;
  font-size: 6px;
}

.social-feeds-result span:last-child b {
  background: linear-gradient(135deg, #7638fa, #d62976, #f7a34b);
}

.social-feeds-result i {
  height: 1px;
  background: linear-gradient(90deg, #1877f2, #dd2a7b);
}

@keyframes facebookReaction {
  0%,
  46%,
  100% {
    opacity: 0;
    transform: translateY(8px) scale(0.84);
  }

  55%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes instagramHeart {
  0%,
  46%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }

  55%,
  68% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Device-based Meta placement preview */
.social-demand-demo.social-device-demo {
  display: flex;
  align-content: initial;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 12px;
  background:
    radial-gradient(circle at 91% 8%, rgba(225, 48, 108, 0.09), transparent 27%),
    radial-gradient(circle at 12% 86%, rgba(24, 119, 242, 0.08), transparent 28%),
    linear-gradient(145deg, #f8fafc, #f1f3f6);
  color: #1c1e21;
  font-family: Arial, Helvetica, sans-serif;
}

.social-device-label {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px;
}

.social-device-label > div {
  display: flex;
  align-items: center;
}

.social-device-label p {
  display: grid;
  gap: 2px;
  margin: 0 0 0 9px;
}

.social-device-label small {
  color: #1877f2;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.social-device-label strong {
  font-size: 10px;
}

.social-device-label > span {
  color: #777d86;
  font-size: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-device-stage {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
  align-items: end;
  gap: 16px;
  padding: 2px 2px 0;
}

.facebook-computer,
.instagram-phone {
  min-width: 0;
  margin: 0;
  position: relative;
}

.facebook-computer {
  align-self: center;
  display: grid;
  justify-items: center;
  padding-top: 4px;
}

.facebook-monitor {
  width: 100%;
  padding: 7px 7px 10px;
  border-radius: 12px 12px 9px 9px;
  background: linear-gradient(145deg, #1e2024, #070809 62%, #24272b);
  box-shadow: 0 20px 34px rgba(21, 28, 36, 0.22), inset 0 1px rgba(255, 255, 255, 0.18);
}

.facebook-screen {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #f0f2f5;
}

.facebook-desktop-top {
  height: 35px;
  display: grid;
  grid-template-columns: 24px minmax(75px, 130px) minmax(100px, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 0 7px;
  position: relative;
  z-index: 4;
  border-bottom: 1px solid #dfe1e5;
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.facebook-desktop-top .social-platform-logo {
  width: 23px;
  height: 23px;
  border-radius: 50%;
}

.facebook-desktop-search {
  height: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 9px;
  border-radius: 14px;
  background: #f0f2f5;
  color: #65676b;
  font-size: 6px;
  white-space: nowrap;
}

.facebook-desktop-top nav {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(25px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 3px;
}

.facebook-desktop-top nav b {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-bottom: 2px solid transparent;
  color: #65676b;
  font-size: 12px;
  font-weight: 400;
}

.facebook-desktop-top nav b:first-child {
  border-color: #1877f2;
  color: #1877f2;
}

.facebook-desktop-top > div:last-child {
  display: flex;
  gap: 4px;
}

.facebook-desktop-top > div:last-child i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4e6eb;
  color: #1c1e21;
  font-size: 7px;
  font-style: normal;
}

.facebook-desktop-body {
  height: calc(100% - 35px);
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 72px;
  gap: 7px;
  padding: 7px;
  background: #f0f2f5;
}

.facebook-desktop-sidebar,
.facebook-desktop-contacts {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 2px;
  overflow: hidden;
}

.facebook-desktop-sidebar span,
.facebook-desktop-contacts > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  overflow: hidden;
  color: #1c1e21;
  font-size: 5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.facebook-desktop-sidebar i,
.facebook-desktop-contacts > span i {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d7e8ff;
  color: #1877f2;
  font-size: 5px;
  font-style: normal;
}

.facebook-desktop-contacts > strong {
  margin: 4px 2px 2px;
  color: #65676b;
  font-size: 6px;
}

.facebook-desktop-contacts > div {
  display: grid;
  gap: 3px;
  margin-bottom: 4px;
}

.facebook-desktop-contacts > div > i {
  height: 38px;
  border-radius: 4px;
  background: linear-gradient(145deg, #667d5f, #d9c9a7);
}

.facebook-desktop-contacts > div span {
  display: grid;
  color: #1c1e21;
  font-size: 5px;
  font-weight: 600;
}

.facebook-desktop-contacts > div small {
  color: #65676b;
  font-size: 4px;
  font-weight: 400;
}

.facebook-scroll-window {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.facebook-scroll-window::after,
.instagram-scroll-window::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 16px;
  background: linear-gradient(transparent, rgba(240, 242, 245, 0.72));
  pointer-events: none;
}

.facebook-scroll-track {
  display: grid;
  gap: 7px;
  animation: facebookFeedScroll 16s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  animation-delay: -5s;
  will-change: transform;
}

.facebook-composer,
.facebook-feed-post {
  overflow: hidden;
  border-radius: 5px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.facebook-composer {
  padding: 7px;
}

.facebook-composer > div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e4e6eb;
}

.facebook-composer i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d7e8ff;
  color: #1877f2;
  font-size: 5px;
  font-style: normal;
  font-weight: 700;
}

.facebook-composer > div span {
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 12px;
  background: #f0f2f5;
  color: #65676b;
  font-size: 5px;
}

.facebook-composer footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 5px;
  color: #65676b;
  font-size: 4px;
  text-align: center;
}

.facebook-feed-post > header {
  min-height: 34px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 5px 7px 3px;
}

.facebook-avatar {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 5px;
  font-style: normal;
  font-weight: 700;
}

.facebook-avatar--home {
  background: linear-gradient(135deg, #c58b6a, #766250);
}

.facebook-avatar--vista {
  background: linear-gradient(135deg, #0a6f50, #65a879);
}

.facebook-avatar--neighbour {
  background: linear-gradient(135deg, #3279d5, #6ba8e8);
}

.facebook-feed-post > header > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.facebook-feed-post > header strong {
  overflow: hidden;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.facebook-feed-post > header small {
  color: #65676b;
  font-size: 4.5px;
}

.facebook-feed-post > header b {
  color: #65676b;
  font-size: 7px;
}

.facebook-feed-post > p {
  margin: 0;
  padding: 4px 7px 7px;
  color: #1c1e21;
  font-size: 5.5px;
  line-height: 1.4;
}

.facebook-feed-post--organic > footer {
  display: flex;
  justify-content: space-between;
  padding: 5px 7px;
  color: #65676b;
  font-size: 4.5px;
}

.facebook-organic-photo {
  height: 138px;
  background: url("/assets/social-feed/living-room.jpg") center 58% / cover no-repeat;
}

.facebook-real-ad-creative {
  height: 169px;
  position: relative;
  overflow: hidden;
  background: #d8d0c5;
}

.facebook-real-ad-creative > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
}

.facebook-real-ad-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 245, 239, 0.98) 0 31%, rgba(248, 245, 239, 0.68) 47%, transparent 68%);
}

.facebook-real-ad-copy {
  width: 48%;
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 7px;
  padding: 14px;
  background: transparent;
}

.facebook-real-ad-copy small {
  color: #0b6b4f;
  font-size: 4px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.facebook-real-ad-copy strong {
  color: #17372f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 0.94;
}

.facebook-real-ad-copy span {
  padding: 4px 6px;
  border-radius: 2px;
  background: #0b6b4f;
  color: white;
  font-size: 4px;
  font-weight: 600;
}

.facebook-real-window,
.instagram-real-window {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  padding: 9px;
  background: #f5f0e8;
}

.facebook-real-window i,
.instagram-real-window i {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.62), transparent 43%),
    linear-gradient(180deg, #9bc9e4 0 46%, #b5c9aa 46% 67%, #5f805c 67%);
}

.facebook-real-window i::after,
.instagram-real-window i::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 38%;
  height: 67%;
  border-radius: 55% 55% 0 0;
  background: rgba(46, 91, 49, 0.55);
}

.facebook-real-link {
  min-height: 43px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 6px 7px;
  background: #f0f2f5;
}

.facebook-real-link > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.facebook-real-link small,
.facebook-real-link span {
  color: #65676b;
  font-size: 4px;
}

.facebook-real-link strong {
  overflow: hidden;
  font-size: 5.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.facebook-real-link button {
  min-height: 23px;
  padding: 0 7px;
  border: 0;
  border-radius: 3px;
  background: #e4e6eb;
  color: #1c1e21;
  font-size: 5px;
  font-weight: 700;
}

.facebook-real-proof {
  display: flex;
  justify-content: space-between;
  padding: 5px 7px;
  color: #65676b;
  font-size: 4.5px;
}

.facebook-real-actions {
  min-height: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e4e6eb;
}

.facebook-real-actions button {
  border: 0;
  background: white;
  color: #65676b;
  font-size: 5px;
  font-weight: 600;
}

.facebook-community-photo {
  min-height: 120px;
  display: grid;
  place-content: center;
  gap: 6px;
  background:
    linear-gradient(rgba(24, 56, 85, 0.08), rgba(24, 56, 85, 0.3)),
    url("/assets/social-feed/community-home.jpg") center 52% / cover no-repeat;
  color: white;
  text-align: center;
}

.facebook-community-photo strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 0.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.facebook-community-photo small {
  font-size: 5px;
}

.facebook-monitor-neck {
  width: 68px;
  height: 27px;
  background: linear-gradient(90deg, #bbbcc0, #f4f4f4 48%, #aaaeb3);
  clip-path: polygon(35% 0, 65% 0, 79% 100%, 21% 100%);
}

.facebook-monitor-base {
  width: 136px;
  height: 7px;
  border-radius: 50% 50% 3px 3px;
  background: linear-gradient(180deg, #f2f2f2, #a8aaad);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.13);
}

.facebook-computer figcaption,
.instagram-phone figcaption {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 7px;
  color: #1c1e21;
}

.facebook-computer figcaption .social-platform-logo,
.instagram-phone figcaption .social-platform-logo {
  width: 22px;
  height: 22px;
  margin: 0;
}

.facebook-computer figcaption div,
.instagram-phone figcaption div {
  display: grid;
  gap: 1px;
}

.facebook-computer figcaption strong,
.instagram-phone figcaption strong {
  font-size: 6px;
}

.facebook-computer figcaption small,
.instagram-phone figcaption small {
  color: #70757b;
  font-size: 4.5px;
}

.instagram-phone {
  align-self: end;
  display: grid;
  justify-items: center;
}

.instagram-phone-frame {
  width: 172px;
  height: auto;
  aspect-ratio: 393 / 852;
  padding: 7px;
  position: relative;
  border: 1px solid #5c5c5d;
  border-radius: 30px;
  background: linear-gradient(145deg, #393a3d, #050607 44%, #202124);
  box-shadow: 0 22px 34px rgba(24, 29, 37, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.instagram-phone-frame::before,
.instagram-phone-frame::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 3px;
  border-radius: 2px 0 0 2px;
  background: #454649;
}

.instagram-phone-frame::before {
  top: 78px;
  height: 34px;
}

.instagram-phone-frame::after {
  top: 123px;
  height: 54px;
}

.instagram-dynamic-island {
  width: 52px;
  height: 14px;
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 13px;
  border-radius: 10px;
  background: #050607;
  transform: translateX(-50%);
}

.instagram-dynamic-island::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  right: 7px;
  top: 5px;
  border-radius: 50%;
  background: #183f68;
}

.instagram-phone-screen {
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 23px;
  background: white;
}

.instagram-mobile-top {
  height: 45px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 11px 8px;
  position: relative;
  z-index: 6;
  border-bottom: 1px solid #efefef;
  background: rgba(255, 255, 255, 0.97);
}

.instagram-mobile-top strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.instagram-mobile-top > div {
  display: flex;
  gap: 9px;
  font-size: 12px;
}

.instagram-scroll-window {
  height: calc(100% - 77px);
  overflow: hidden;
  position: relative;
  background: white;
}

.instagram-scroll-window::after {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.85));
}

.instagram-scroll-track {
  background: white;
  animation: instagramFeedScroll 17s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  animation-delay: -6s;
  will-change: transform;
}

.instagram-mobile-stories {
  height: 67px;
  display: flex;
  gap: 8px;
  padding: 7px 8px 5px;
  overflow: hidden;
  border-bottom: 1px solid #efefef;
}

.instagram-mobile-stories span {
  flex: 0 0 34px;
  display: grid;
  justify-items: center;
  gap: 3px;
}

.instagram-mobile-stories i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: #eceff2;
  color: #444;
  font-size: 5px;
  font-style: normal;
  box-shadow: 0 0 0 2px #d62976;
}

.instagram-mobile-stories .instagram-story--you {
  box-shadow: 0 0 0 1px #c7c7c7;
}

.instagram-mobile-stories small {
  width: 37px;
  overflow: hidden;
  font-size: 4.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-mobile-post {
  position: relative;
  border-bottom: 1px solid #efefef;
  background: white;
}

.instagram-mobile-post > header {
  height: 39px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
}

.instagram-user {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 5px;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 0 0 1.5px #d62976;
}

.instagram-user--local {
  background: linear-gradient(135deg, #628ea5, #d3a778);
}

.instagram-user--vista {
  background: linear-gradient(135deg, #0a6f50, #65a879);
}

.instagram-user--design {
  background: linear-gradient(135deg, #9c79b8, #e1ab87);
}

.instagram-mobile-post > header > div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.instagram-mobile-post > header strong {
  overflow: hidden;
  font-size: 5.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instagram-mobile-post > header small {
  font-size: 4px;
}

.instagram-mobile-post > header b {
  font-size: 7px;
}

.instagram-lifestyle-photo,
.instagram-design-photo {
  height: 210px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 40%),
    url("/assets/social-feed/living-room.jpg") center / cover no-repeat;
}

.instagram-mobile-actions {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 12px;
}

.instagram-mobile-post > p,
.instagram-mobile-caption {
  margin: 0;
  padding: 0 8px 8px;
  font-size: 5px;
  line-height: 1.4;
}

.instagram-mobile-post > p span,
.instagram-mobile-caption span,
.instagram-mobile-caption small {
  color: #8e8e8e;
}

.instagram-real-ad-creative {
  height: 236px;
  position: relative;
  overflow: hidden;
  background: #f5f1e9;
}

.instagram-real-ad-creative > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
}

.instagram-real-ad-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,245,239,.94) 0 34%, rgba(248,245,239,.45) 54%, transparent 74%);
}

.instagram-real-ad-copy {
  width: 100%;
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 11px 8px;
  text-align: center;
}

.instagram-real-ad-copy small {
  color: #0b6b4f;
  font-size: 4px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.instagram-real-ad-copy strong {
  color: #17372f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 0.88;
}

.instagram-real-ad-copy span {
  color: #6b726f;
  font-size: 3.7px;
  letter-spacing: 0.08em;
}

.instagram-real-window {
  padding: 6px;
}

.instagram-real-ad-creative em {
  position: absolute;
  right: 8px;
  bottom: 7px;
  padding: 3px 5px;
  border-radius: 8px;
  background: rgba(255,255,255,.85);
  color: #0b6b4f;
  font-size: 4px;
  font-style: normal;
  font-weight: 700;
}

.instagram-mobile-cta {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  border-bottom: 1px solid #efefef;
  color: #0095f6;
  font-size: 5.5px;
  font-weight: 700;
}

.instagram-mobile-cta b {
  font-size: 12px;
}

.instagram-mobile-caption {
  display: grid;
  gap: 3px;
}

.instagram-mobile-caption strong {
  font-size: 5px;
}

.instagram-mobile-caption p {
  margin: 0;
}

.instagram-design-photo {
  height: 210px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 40%),
    url("/assets/social-feed/design-room.jpg") center / cover no-repeat;
}

.instagram-mobile-nav {
  height: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #efefef;
  background: rgba(255, 255, 255, 0.98);
  font-size: 11px;
}
