@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #061426;
  --bg-2: #091d36;
  --surface: #0d2441;
  --surface-2: #102c4e;
  --text: #f8fbff;
  --muted: #a8bdd3;
  --blue: #1395ff;
  --blue-2: #35b8ff;
  --cyan: #02d7ff;
  --magenta: #f4238f;
  --yellow: #ffd900;
  --border: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

button, input, select, textarea {
  font: inherit;
}

button, select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 38, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 182px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: #d7e4f1;
  font-size: .94rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--cyan);
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: .94rem;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #0787ff, #00c2ff);
  box-shadow: 0 12px 35px rgba(0, 153, 255, .24);
}

.btn-outline {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}

.btn-ghost {
  border-color: rgba(40,177,255,.28);
  color: #d7f3ff;
  background: rgba(13, 93, 148, .10);
}

.btn-whatsapp {
  color: #061426;
  background: #4ee58a;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(0, 152, 255, .16), transparent 34%),
    linear-gradient(180deg, #061426 0%, #07192e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .13;
}

.hero-glow-1 {
  background: var(--cyan);
  top: -80px;
  right: 4%;
}

.hero-glow-2 {
  background: var(--magenta);
  bottom: -140px;
  left: 5%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  display: inline-block;
  color: #57cfff;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .15em;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.5rem);
  line-height: .97;
  max-width: 760px;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #43c8ff, #1097ff 52%, #65e3ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.quick-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #c7d9e9;
  font-size: .85rem;
  font-weight: 600;
}

.hero-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(17, 49, 83, .92), rgba(7, 25, 46, .97));
  border: 1px solid rgba(83, 196, 255, .18);
  box-shadow: var(--shadow);
}

.hero-card-label {
  color: #6bd5ff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  padding-bottom: 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.mock-step {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
}

.step-number {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #5acbff;
  background: rgba(19, 149, 255, .09);
  border: 1px solid rgba(19, 149, 255, .22);
}

.mock-step.active .step-number {
  color: white;
  background: linear-gradient(135deg, #0787ff, #00c2ff);
}

.mock-step strong,
.mock-step small {
  display: block;
}

.mock-step small {
  color: var(--muted);
  margin-top: 3px;
}

.mock-line {
  width: 1px;
  height: 8px;
  background: rgba(255,255,255,.12);
  margin-left: 22px;
}

.section {
  padding: 95px 0;
  background: #f7faff;
  color: #0d1d2f;
}

.section-dark {
  background: #07182c;
  color: white;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.section-heading p {
  color: #61758b;
  margin-top: 14px;
}

.section-dark .section-heading p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}


.product-card {
  text-align: left;
  min-height: 255px;
  padding: 18px;
  background: white;
  border: 1px solid #e2ebf4;
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(24, 55, 85, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #6cc9ff;
  box-shadow: 0 18px 55px rgba(21, 138, 219, .12);
}

.product-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #eff7ff 0%, #e7f3ff 100%);
  border: 1px solid #dcebfb;
  margin-bottom: 16px;
  position: relative;
}

.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.16) 100%);
  pointer-events: none;
}

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

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-card strong {
  display: block;
  font-size: 1.06rem;
}

.product-card small {
  display: block;
  color: #6a7d90;
  margin-top: 8px;
  line-height: 1.45;
}

.product-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eef8ff;
  color: #118ee8;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
}


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

.info-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
}

.info-card span {
  color: #42c4ff;
  font-size: .78rem;
  font-weight: 900;
}

.info-card h3 {
  margin: 20px 0 8px;
  font-size: 1.15rem;
}

.info-card p {
  color: var(--muted);
  font-size: .92rem;
}

.order-section {
  background: #eef5fb;
}

.order-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: start;
}

.order-form,
.summary-card {
  background: white;
  border: 1px solid #dbe7f2;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(25, 65, 105, .08);
}

.order-form {
  padding: 30px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: .87rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.field label span {
  font-weight: 500;
  color: #7b8da0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cedce8;
  border-radius: 13px;
  background: #fbfdff;
  color: #0b1c2e;
  outline: none;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #119bea;
  box-shadow: 0 0 0 4px rgba(17, 155, 234, .10);
}

textarea {
  resize: vertical;
}

.field-help {
  display: block;
  margin-top: 8px;
  color: #708398;
  line-height: 1.45;
}

.hidden {
  display: none !important;
}

.summary-card {
  position: sticky;
  top: 104px;
  overflow: hidden;
}

.summary-top {
  background: linear-gradient(135deg, #071b33, #0a3157);
  color: white;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-top span {
  color: #6ed7ff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.summary-top strong {
  font-size: .82rem;
}

.summary-empty,
.summary-content {
  padding: 26px;
}

.summary-empty {
  color: #6e8195;
}

#summaryList {
  display: grid;
  gap: 0;
  margin-bottom: 22px;
}

#summaryList > div {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 11px 0;
  border-bottom: 1px solid #edf2f6;
}

#summaryList dt {
  color: #74869a;
  font-size: .85rem;
}

#summaryList dd {
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-note {
  margin-top: 14px;
  color: #718499;
  font-size: .78rem;
  text-align: center;
}

.contact-section {
  background: #061426;
  color: white;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px;
  border: 1px solid rgba(83, 196, 255, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 176, 255, .14), transparent 32%),
    #0a1f38;
}

.contact-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.contact-card p {
  color: var(--muted);
  margin-top: 12px;
}

.contact-actions {
  min-width: 310px;
  display: grid;
  gap: 10px;
}

footer {
  background: #03101d;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-content {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-content img {
  width: 175px;
}

.footer-content p {
  font-size: .82rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 110;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061426;
  background: #4ee58a;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0,0,0,.3);
}

@media (max-width: 980px) {
  .desktop-only {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 14px;
    border-radius: 16px;
    background: #0a1f38;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  nav.open {
    display: grid;
  }

  nav a {
    padding: 10px;
  }

  .hero-grid,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-card {
    position: static;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .nav {
    height: 72px;
  }

  .brand {
    width: 148px;
  }

  nav {
    top: 72px;
    left: 13px;
    right: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 64px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .hero-copy > p {
    font-size: .98rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-benefits {
    display: grid;
    gap: 9px;
  }

  .hero-card {
    padding: 20px;
  }

  .section {
    padding: 70px 0;
  }

  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 160px;
  }

  .order-form {
    padding: 20px;
  }

  #summaryList > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  #summaryList dd {
    text-align: left;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .footer-content {
    padding: 28px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}


.upload-progress {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 4px 0 16px;
  padding: 12px 14px;
  border-radius: 13px;
  color: #0f5480;
  background: #eaf7ff;
  border: 1px solid #c7e8fb;
  font-size: .86rem;
  font-weight: 700;
}

.spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  border: 2px solid rgba(17, 155, 234, .22);
  border-top-color: #119bea;
  animation: grafon-spin .8s linear infinite;
}

@keyframes grafon-spin {
  to { transform: rotate(360deg); }
}

#submitOrderBtn:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

#summaryList a {
  color: #087edf;
  text-decoration: underline;
  font-weight: 800;
}



.product-watermark {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 16px rgba(18, 45, 72, 0.08);
  z-index: 2;
  opacity: 0.9;
}

.product-watermark img {
  display: block;
  height: 18px;
  width: auto;
}

@media (max-width: 768px) {
  .product-watermark {
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
  }

  .product-watermark img {
    height: 16px;
  }
}



/* ===== Institucional GrafON ===== */

.institutional-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(17, 155, 234, .08), transparent 28%),
    #f7faff;
}

.institutional-shell {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: stretch;
}

.institutional-brand,
.institutional-trust {
  border-radius: 28px;
}

.institutional-brand {
  padding: 36px;
  background:
    radial-gradient(circle at 88% 10%, rgba(40, 183, 255, .18), transparent 26%),
    linear-gradient(145deg, #07182f 0%, #0c2d50 100%);
  color: white;
  border: 1px solid rgba(93, 201, 255, .14);
  box-shadow: 0 24px 70px rgba(20, 50, 80, .12);
}

.institutional-logo-wrap {
  width: min(270px, 78%);
  padding: 14px 0 24px;
}

.institutional-logo-wrap img {
  width: 100%;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

.institutional-brand h2 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: 720px;
}

.institutional-brand > p {
  color: #c8d7e6;
  margin-top: 20px;
  max-width: 690px;
  font-size: 1rem;
}

.institutional-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.institutional-outline {
  color: white;
  border-color: rgba(255,255,255,.2);
}

.institutional-trust {
  display: grid;
  gap: 14px;
}

.trust-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px;
  background: white;
  border: 1px solid #deebf5;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(29, 64, 96, .06);
}

.trust-card-featured {
  border-color: #97d8ff;
  box-shadow: 0 18px 42px rgba(13, 142, 229, .10);
}

.trust-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eaf7ff;
  color: #118ee8;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.trust-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.trust-card p {
  color: #65798d;
  font-size: .9rem;
  line-height: 1.55;
}

.institutional-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.value-card {
  padding: 24px;
  border: 1px solid #e1ebf4;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(23, 54, 83, .05);
}

.value-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #0787ff, #00c2ff);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.value-card p {
  color: #687d90;
  font-size: .88rem;
  line-height: 1.55;
}

.credibility-banner {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 24px;
  background: #081b31;
  color: white;
  border: 1px solid rgba(79, 193, 255, .16);
  box-shadow: 0 18px 50px rgba(8, 29, 52, .14);
}

.credibility-banner h3 {
  max-width: 800px;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.credibility-banner p {
  color: #b8ccde;
  font-size: .94rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .institutional-shell,
  .credibility-banner {
    grid-template-columns: 1fr;
  }

  .institutional-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .institutional-brand {
    padding: 24px 20px;
  }

  .institutional-logo-wrap {
    width: 72%;
  }

  .institutional-actions .btn {
    width: 100%;
  }

  .trust-card {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .trust-number {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .institutional-values {
    grid-template-columns: 1fr;
  }

  .credibility-banner {
    padding: 24px 20px;
  }
}



/* ===== Credibilidade + Instagram ===== */

.social-proof-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 151, 255, .08), transparent 26%),
    #f5f9fd;
}

.social-proof-heading {
  max-width: 820px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 22px;
  align-items: stretch;
}

.instagram-showcase {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 12%, rgba(12, 168, 255, .15), transparent 30%),
    linear-gradient(145deg, #07182e 0%, #0b3157 100%);
  color: white;
  border: 1px solid rgba(83, 196, 255, .16);
  box-shadow: 0 22px 65px rgba(14, 45, 76, .12);
}

.instagram-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.instagram-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(69, 192, 255, .10);
  color: #6ed8ff;
  border: 1px solid rgba(91, 205, 255, .18);
  font-size: .82rem;
  font-weight: 900;
}

.instagram-showcase-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.instagram-showcase-copy p {
  margin: 14px 0 24px;
  color: #bfd2e4;
  line-height: 1.6;
}

.instagram-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 350px;
}

.instagram-tile {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: #dfeaf3;
}

.instagram-tile.tile-wide {
  grid-row: 1 / span 2;
}

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

.instagram-tile:hover img {
  transform: scale(1.035);
}

.confidence-panel {
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid #deebf5;
  box-shadow: 0 18px 48px rgba(25, 64, 98, .07);
}

.confidence-panel h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}

.confidence-list {
  display: grid;
  gap: 12px;
}

.confidence-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-top: 1px solid #edf2f6;
}

.confidence-item:first-child {
  border-top: 0;
}

.confidence-item > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eaf7ff;
  color: #118ee8;
  font-size: .75rem;
  font-weight: 900;
}

.confidence-item strong {
  display: block;
  margin-bottom: 4px;
}

.confidence-item p {
  color: #6b7f92;
  font-size: .87rem;
  line-height: 1.5;
}

.testimonials-placeholder {
  margin-top: 22px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 27px 30px;
  border-radius: 24px;
  background: white;
  border: 1px dashed #b8d7ec;
}

.testimonials-placeholder h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 9px;
}

.testimonials-placeholder p {
  color: #6d8194;
  max-width: 800px;
}

.testimonials-instagram-btn {
  color: #0b5f9c;
  border-color: #a8d2ee;
  background: #f3faff;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .social-proof-grid,
  .instagram-showcase {
    grid-template-columns: 1fr;
  }

  .instagram-mosaic {
    min-height: 410px;
  }

  .testimonials-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .instagram-showcase,
  .confidence-panel {
    padding: 20px;
  }

  .instagram-mosaic {
    min-height: 360px;
  }

  .testimonials-placeholder {
    padding: 22px 20px;
  }

  .testimonials-instagram-btn {
    width: 100%;
  }
}
