:root {
  --font-brand: "Ping Pong", "Montserrat", sans-serif;
  --bg: #07111f;
  --surface-border: rgba(106, 160, 255, 0.18);
  --text: #eff5ff;
  --muted: #a1b4d6;
  --blue: #1a73e8;
  --blue-strong: #3a8cff;
  --cyan: #50b9ff;
  --success: #8fe7c2;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
  --heading-gradient-hero: linear-gradient(90deg, #f8fbff 0%, #5f7fff 36%, #34a7ff 68%, #39d4ff 100%);
  --heading-gradient-section: linear-gradient(90deg, #f6faff 0%, #6f8cff 34%, #43abff 66%, #50cfff 100%);
}

* {
  box-sizing: border-box;
}

.material-symbols-rounded {
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-brand);
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, 0.24), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(80, 185, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #06101d 0%, #091321 38%, #040914 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  pointer-events: none;
  z-index: -1;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(15, 25, 42, 0.74), rgba(6, 12, 22, 0.3));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

main > .section,
main > .section-alt {
  position: relative;
  overflow: clip;
}

.glass {
  background: linear-gradient(180deg, rgba(16, 29, 50, 0.9), rgba(9, 18, 32, 0.76));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.14);
  color: #94c7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero-copy h1,
.resources-copy h2,
.contact-copy h2,
.cta-panel h2,
.faq-layout h2 {
  margin: 1rem 0 0.9rem;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-shadow: 0 0 11px rgba(84, 164, 255, 0.11);
  color: var(--text);
}

.hero-copy h1 {
  text-shadow: 0 0 14px rgba(84, 164, 255, 0.14);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-copy h1 {
    background: var(--heading-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-heading h2,
  .resources-copy h2,
  .contact-copy h2,
  .cta-panel h2,
  .faq-layout h2 {
    background: var(--heading-gradient-section);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.section-heading h2,
.resources-copy h2,
.contact-copy h2,
.cta-panel h2,
.faq-layout h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.section-heading p,
.resources-copy p,
.contact-copy p,
.faq-layout p,
.footer p,
.hero-copy .lead,
.segment-card p,
.resource-card p,
.testimonial-card p,
.feature-card p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 12, 22, 0.65);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar.scrolled {
  background: rgba(4, 10, 18, 0.92);
}

.nav,
.dashboard-top,
.dashboard-list div,
.footer-grid,
.contact-grid,
.resources-layout,
.faq-layout,
.cta-panel,
.form-heading,
.contact-cards {
  display: flex;
}

.nav {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 160px;
  max-width: 42vw;
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-strong), var(--cyan));
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(26, 115, 232, 0.35);
}

.brand-text {
  display: grid;
}

.brand-text small,
.dashboard-metric small,
.dashboard-list span,
.testimonial-card span,
.footer a,
.hero-metrics span,
.contact-card small {
  color: var(--muted);
}

body[data-theme="light"] {
  --text: #102a4a;
  --muted: #5f7492;
  --surface-border: rgba(52, 127, 226, 0.2);
  --shadow: 0 24px 54px rgba(17, 52, 99, 0.14);
  --heading-gradient-hero: linear-gradient(90deg, #15365f 0%, #245b96 52%, #2f78bf 100%);
  --heading-gradient-section: linear-gradient(90deg, #1a406d 0%, #2b5f9a 52%, #3b82c8 100%);
  background:
    radial-gradient(circle at top left, rgba(63, 139, 233, 0.14), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(74, 178, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #eff5ff 0%, #e8f1ff 45%, #f6f9ff 100%);
}

body[data-theme="light"]::before {
  background-image:
    linear-gradient(rgba(32, 102, 194, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 102, 194, 0.05) 1px, transparent 1px);
  mask-image: none;
  opacity: 0.4;
}

body[data-theme="light"] .topbar {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(27, 109, 219, 0.14);
}

body[data-theme="light"] .topbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
}

body[data-theme="light"] .section-alt {
  background: linear-gradient(180deg, rgba(236, 245, 255, 0.84), rgba(244, 249, 255, 0.82));
  border-top: 1px solid rgba(42, 121, 226, 0.06);
  border-bottom: 1px solid rgba(42, 121, 226, 0.06);
}

body[data-theme="light"] .hero.section {
  background:
    radial-gradient(circle at 18% 14%, rgba(58, 136, 232, 0.11), transparent 46%),
    radial-gradient(circle at 84% 26%, rgba(111, 194, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(240, 248, 255, 0.9), rgba(247, 252, 255, 0.88));
  border-bottom: 1px solid rgba(37, 116, 218, 0.06);
}

body[data-theme="light"] #parceiros.section-alt {
  background:
    radial-gradient(circle at 12% 50%, rgba(72, 147, 237, 0.08), transparent 45%),
    radial-gradient(circle at 86% 62%, rgba(112, 198, 255, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(236, 246, 255, 0.88), rgba(246, 251, 255, 0.9));
}

body[data-theme="light"] #contato.section {
  background:
    radial-gradient(circle at 78% 16%, rgba(53, 132, 228, 0.08), transparent 42%),
    radial-gradient(circle at 20% 82%, rgba(95, 184, 252, 0.07), transparent 38%),
    linear-gradient(180deg, rgba(243, 249, 255, 0.94), rgba(249, 252, 255, 0.92));
  border-top: 1px solid rgba(37, 116, 218, 0.05);
  border-bottom: 1px solid rgba(37, 116, 218, 0.05);
}

body[data-theme="light"] main > .section::before,
body[data-theme="light"] main > .section-alt::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 34px;
  background: radial-gradient(140% 80% at 50% 0%, rgba(52, 129, 227, 0.09), rgba(52, 129, 227, 0));
  pointer-events: none;
}

body[data-theme="light"] main > .hero.section::before {
  display: none;
}

body[data-theme="light"] main > .section::after,
body[data-theme="light"] main > .section-alt::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 138, 235, 0), rgba(61, 138, 235, 0.12), rgba(61, 138, 235, 0));
  pointer-events: none;
}

body[data-theme="light"] .cta-strip.section::after {
  display: none;
}

body[data-theme="light"] #contato.section::after {
  display: none;
}

body[data-theme="light"] .footer {
  background: linear-gradient(180deg, rgba(239, 247, 255, 0.92), rgba(246, 251, 255, 0.98));
  border-top: 1px solid rgba(52, 129, 227, 0.12);
}

body[data-theme="light"] .glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.9));
}

body[data-theme="light"] .nav-menu a,
body[data-theme="light"] .brand-text small {
  color: #23496f;
}

body[data-theme="light"] .theme-toggle {
  background: rgba(36, 122, 230, 0.08);
  border-color: rgba(43, 123, 227, 0.22);
  color: #1b4f82;
}

body[data-theme="light"] .button-secondary {
  background: rgba(28, 111, 218, 0.08);
  border-color: rgba(29, 112, 218, 0.18);
}

body[data-theme="light"] .button-primary,
body[data-theme="light"] .nav-cta {
  box-shadow: 0 10px 24px rgba(28, 112, 218, 0.2);
}

body[data-theme="light"] .button-primary:hover,
body[data-theme="light"] .nav-cta:hover {
  box-shadow: 0 12px 28px rgba(28, 112, 218, 0.24);
}

body[data-theme="light"] .hero-metrics article,
body[data-theme="light"] .faq-item,
body[data-theme="light"] .logo-card {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(36, 117, 223, 0.16);
  box-shadow: 0 10px 24px rgba(44, 108, 185, 0.08);
}

body[data-theme="light"] .logo-card:hover {
  box-shadow: 0 16px 30px rgba(44, 108, 185, 0.12);
  border-color: rgba(36, 117, 223, 0.22);
}

body[data-theme="light"] .partner-marquee::before {
  background: linear-gradient(90deg, rgba(239, 245, 255, 0.96), rgba(239, 245, 255, 0));
}

body[data-theme="light"] .partner-marquee::after {
  background: linear-gradient(270deg, rgba(239, 245, 255, 0.96), rgba(239, 245, 255, 0));
}

body[data-theme="light"] .hero-media-overlay div {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(60, 137, 232, 0.2);
}

body[data-theme="light"] .hero-media-overlay span {
  color: #2f6ca5;
}

body[data-theme="light"] .segment-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.92));
  border-color: rgba(36, 117, 223, 0.16);
}

body[data-theme="light"] .contact-form input,
body[data-theme="light"] .contact-form select,
body[data-theme="light"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(33, 113, 216, 0.2);
  color: #163357;
}

body[data-theme="light"] .contact-form input::placeholder,
body[data-theme="light"] .contact-form textarea::placeholder {
  color: #7389a9;
}

body[data-theme="light"] .section-heading h2,
body[data-theme="light"] .hero-copy h1,
body[data-theme="light"] .resources-copy h2,
body[data-theme="light"] .contact-copy h2,
body[data-theme="light"] .cta-panel h2,
body[data-theme="light"] .faq-layout h2 {
  text-shadow: 0 0 8px rgba(47, 123, 219, 0.08);
}

body[data-theme="light"] .eyebrow {
  background: rgba(30, 112, 214, 0.12);
  color: #1f5f9d;
}

body[data-theme="light"] .signal-label,
body[data-theme="light"] .contact-card span,
body[data-theme="light"] .dashboard-top span:first-child {
  color: #2a6296;
}

body[data-theme="light"] .dashboard-list span,
body[data-theme="light"] .hero-metrics span,
body[data-theme="light"] .testimonial-card span,
body[data-theme="light"] .footer a,
body[data-theme="light"] .contact-card small {
  color: #567392;
}

body[data-theme="light"] .contact-primary-link {
  color: #173b63;
}

body[data-theme="light"] .contact-primary-link:hover {
  color: #1f67b4;
}

body[data-theme="light"] .contact-icon {
  color: #2f70b6;
  background: rgba(33, 114, 216, 0.1);
  border-color: rgba(39, 118, 220, 0.23);
}

body[data-theme="light"] .contact-wa {
  background: rgba(31, 178, 104, 0.1);
  border-color: rgba(36, 164, 98, 0.24);
}

body[data-theme="light"] .contact-wa svg {
  fill: #179958;
}

body[data-theme="light"] .section-heading p,
body[data-theme="light"] .resources-copy p,
body[data-theme="light"] .contact-copy p,
body[data-theme="light"] .faq-layout p,
body[data-theme="light"] .footer p,
body[data-theme="light"] .hero-copy .lead,
body[data-theme="light"] .segment-card p,
body[data-theme="light"] .resource-card p,
body[data-theme="light"] .testimonial-card p,
body[data-theme="light"] .feature-card p,
body[data-theme="light"] .local-seo-card p {
  color: #4f6f90;
}

body[data-theme="light"] .faq-anchors a {
  background: rgba(32, 113, 214, 0.06);
  border-color: rgba(39, 118, 220, 0.2);
  color: #2a649c;
}

body[data-theme="light"] .local-seo-links a {
  background: rgba(32, 113, 214, 0.06);
  border-color: rgba(39, 118, 220, 0.2);
  color: #235a91;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(157, 200, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #dbe9ff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 200, 255, 0.38);
}

.theme-toggle .material-symbols-rounded {
  font-size: 1.1rem;
}

.nav-menu a {
  color: #dbe9ff;
  font-weight: 600;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: white;
  box-shadow: 0 18px 38px rgba(26, 115, 232, 0.28);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(147, 191, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

body[data-theme="light"] .nav-toggle {
  background: rgba(25, 106, 212, 0.08);
  border-color: rgba(35, 114, 218, 0.24);
}

body[data-theme="light"] .nav-toggle span {
  background: #1f5f9d;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin: 2rem 0;
}

.hero-metrics,
.feature-grid,
.segment-grid,
.resource-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.hero-metrics {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-metrics article,
.signal-card,
.floating-card,
.dashboard-card,
.feature-card,
.resource-card,
.testimonial-card,
.contact-form,
.contact-card {
  border-radius: var(--radius);
}

.hero-metrics article {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  min-height: auto;
}

.hero-media {
  position: relative;
  overflow: hidden;
  padding: 0.55rem;
}

.hero-media img {
  width: 100%;
  border-radius: 18px;
  display: block;
  height: auto;
  object-fit: contain;
}

.hero-media-overlay {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.hero-media-overlay div {
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(6, 16, 30, 0.72);
  border: 1px solid rgba(126, 180, 255, 0.28);
  backdrop-filter: blur(6px);
}

.hero-media-overlay span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9dc9ff;
}

.hero-media-overlay strong {
  display: block;
  margin-top: 0.2rem;
  line-height: 1.35;
}

.signal-card {
  min-height: 0;
  padding: 1.4rem;
}

.signal-label,
.contact-card span,
.dashboard-top span:first-child {
  color: #91c4ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.signal-card strong,
.floating-card strong,
.dashboard-card strong,
.contact-card strong,
.hero-metrics strong,
.testimonial-card strong {
  display: block;
}

.dashboard-card {
  margin-top: 0;
  padding: 1.5rem;
}

.dashboard-top,
.dashboard-list div {
  align-items: center;
  justify-content: space-between;
}

.live-dot {
  color: var(--success);
}

.dashboard-metric {
  margin: 1.25rem 0 1rem;
}

.dashboard-metric strong {
  font-size: 3rem;
  line-height: 1;
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.7rem;
  height: 180px;
  margin-bottom: 1.2rem;
}

.bars span {
  display: block;
  height: var(--h);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #65bcff, #1a73e8);
  box-shadow: 0 16px 24px rgba(26, 115, 232, 0.3);
}

.dashboard-list {
  display: grid;
  gap: 0.9rem;
}

.dashboard-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-list strong {
  text-align: right;
}

.floating-card {
  margin-bottom: 0;
  padding: 1.2rem;
}

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

.feature-card,
.resource-card,
.testimonial-card,
.contact-card,
.contact-form {
  padding: 1.5rem;
}

.feature-card,
.resource-card,
.testimonial-card,
.contact-card {
  height: 100%;
}

.feature-card,
.resource-card,
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before,
.resource-card::before,
.segment-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -42px;
  top: -42px;
  background: radial-gradient(circle, rgba(58, 140, 255, 0.32) 0%, rgba(58, 140, 255, 0) 72%);
  pointer-events: none;
}

.feature-card:hover,
.resource-card:hover,
.segment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 185, 255, 0.34);
  box-shadow: 0 26px 52px rgba(4, 12, 22, 0.5);
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.52s ease, transform 0.52s ease;
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.feature-card .icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26, 115, 232, 0.3), rgba(80, 185, 255, 0.18));
  color: #88c0ff;
  border: 1px solid rgba(151, 197, 255, 0.28);
}

.feature-card .icon .material-symbols-rounded {
  font-size: 1.3rem;
}

.feature-card ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.segment-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.segment-card {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(11, 23, 41, 0.95), rgba(8, 16, 28, 0.8));
  border: 1px solid rgba(138, 184, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.segment-card h3 {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.segment-card h3 .material-symbols-rounded {
  font-size: 1.05rem;
  color: #8ec0ff;
  background: rgba(26, 115, 232, 0.18);
  border: 1px solid rgba(141, 190, 255, 0.23);
  border-radius: 10px;
  padding: 0.35rem;
}

.resource-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.2rem;
}

.resource-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #75c4ff, #2e8eff);
  box-shadow: 0 0 0 4px rgba(46, 142, 255, 0.18);
  flex-shrink: 0;
}

.resources-layout,
.contact-grid,
.faq-layout,
.cta-panel,
.footer-grid {
  gap: 2rem;
}

.resources-layout,
.faq-layout,
.contact-grid {
  align-items: start;
}

.resources-copy {
  flex: 0 0 33%;
  position: sticky;
  top: 110px;
}

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

.resource-card-media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: center;
  height: auto;
}

.resource-card-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(141, 191, 255, 0.22);
  box-shadow: 0 18px 36px rgba(8, 22, 40, 0.34);
}

.partner-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.4rem 0 0.2rem;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

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

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0));
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0));
}

.partner-marquee::-webkit-scrollbar {
  display: none;
}

.partner-marquee.is-dragging {
  cursor: grabbing;
}

.partner-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
}

.logo-card {
  display: flex;
  flex: 0 0 220px;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.logo-card img {
  width: 100%;
  max-width: 168px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  filter: none;
  opacity: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(132, 185, 255, 0.26);
  box-shadow: 0 22px 42px rgba(10, 25, 44, 0.28);
}

.logo-card:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 26px rgba(48, 129, 236, 0.26);
}

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

.testimonial-card strong {
  margin-top: 0;
}

.testimonial-card p {
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(97, 164, 255, 0.32);
  filter: none;
}

.faq-layout > div,
.contact-grid > * {
  flex: 1;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-anchors {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.faq-anchors a {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 189, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #bcd8ff;
  font-size: 0.86rem;
  font-weight: 700;
}

.faq-item {
  padding: 1.2rem 1.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.contact-cards,
.form-heading {
  flex-direction: column;
}

.contact-card {
  display: grid;
  gap: 0.45rem;
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.contact-icon {
  font-size: 1.15rem;
  color: #8ec3ff;
  background: rgba(26, 115, 232, 0.16);
  border: 1px solid rgba(141, 190, 255, 0.24);
  border-radius: 10px;
  padding: 0.35rem;
}

.contact-main-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.contact-primary-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.contact-primary-link:hover {
  color: #7ec0ff;
}

.contact-primary-link.is-strong {
  font-weight: 800;
}

.contact-card small a {
  color: inherit;
  text-decoration: none;
}

.contact-card small a:hover {
  color: #9cc8ff;
}

.contact-wa {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(44, 196, 108, 0.14);
  border: 1px solid rgba(102, 227, 158, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-wa:hover {
  transform: translateY(-1px);
  background: rgba(44, 196, 108, 0.2);
  border-color: rgba(131, 241, 180, 0.42);
}

.contact-wa svg {
  width: 17px;
  height: 17px;
  fill: #7ef0b6;
}

.contact-form {
  padding: 1.6rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.contact-form span {
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(142, 188, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
}

.contact-form select {
  color: var(--text);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #dce9ff 50%),
    linear-gradient(135deg, #dce9ff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.3rem;
}

.contact-form select option {
  color: #0b1a30;
  background: #f8fbff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(80, 185, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.14);
}

.local-seo-grid {
  display: grid;
}

.local-seo-card {
  padding: 1.6rem;
}

.local-seo-card h2 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.2;
}

.local-seo-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.local-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(145, 189, 255, 0.26);
  background: rgba(255, 255, 255, 0.03);
  color: #d5e9ff;
  font-weight: 700;
}

.cta-strip {
  padding-top: 0;
}

.cta-panel {
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-radius: 28px;
}

.cta-panel > div:first-child {
  max-width: 760px;
}

.footer {
  padding: 2rem 0 3rem;
}

.footer-grid {
  justify-content: space-between;
  align-items: start;
}

.footer-grid > div {
  max-width: 320px;
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-grid,
  .segment-grid,
  .testimonial-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-layout,
  .contact-grid,
  .faq-layout,
  .cta-panel,
  .footer-grid {
    flex-direction: column;
  }

  .resources-copy {
    position: static;
  }

  .hero-panel {
    min-height: auto;
  }

  .resource-card-media {
    grid-template-columns: 1fr;
  }

  .cta-panel > div:first-child {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(8, 15, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  body[data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(39, 118, 220, 0.2);
    box-shadow: 0 18px 34px rgba(23, 72, 134, 0.14);
  }

  body[data-theme="light"] .nav-menu a {
    color: #23496f;
  }

  body[data-theme="light"] .nav-menu .button-secondary,
  body[data-theme="light"] .nav-menu .theme-toggle {
    background: rgba(33, 114, 216, 0.06);
    border-color: rgba(39, 118, 220, 0.2);
  }

  .nav-menu.open {
    display: flex;
  }

  .brand {
    max-width: calc(100% - 70px);
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 138px;
    max-width: 100%;
  }

  .hero-grid,
  .hero-metrics,
  .feature-grid,
  .segment-grid,
  .resource-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-panel {
    gap: 1rem;
  }

  .hero-media-overlay {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.7rem;
    grid-template-columns: 1fr;
  }

  .hero-media-overlay div {
    background: rgba(6, 16, 30, 0.82);
  }

  .dashboard-metric strong {
    font-size: 2.5rem;
  }

  .cta-panel {
    padding: 1.4rem;
  }

  .button,
  .nav-cta,
  .theme-toggle {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .logo-card {
    flex-basis: 180px;
  }

  .partner-marquee::before,
  .partner-marquee::after {
    width: 42px;
  }

  .faq-anchors,
  .local-seo-links {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-anchors a,
  .local-seo-links a {
    justify-content: center;
  }
}

.blog-hero {
  padding-top: 4.8rem;
}

.blog-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 1.6rem;
  align-items: start;
}

.blog-hero-copy {
  max-width: 760px;
}

.blog-editorial-card {
  padding: 1.6rem;
  display: grid;
  gap: 0.9rem;
  position: sticky;
  top: 108px;
}

.blog-editorial-list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.blog-metrics article {
  min-height: 100%;
}

.blog-section-heading {
  max-width: 860px;
}

.blog-toolbar {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  margin-bottom: 1.4rem;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-filter {
  border: 1px solid rgba(145, 189, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  min-height: 42px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-filter:hover,
.blog-filter.is-active {
  background: rgba(26, 115, 232, 0.18);
  border-color: rgba(113, 175, 255, 0.32);
  transform: translateY(-1px);
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid rgba(142, 188, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.blog-search span {
  color: #8dbfff;
}

.blog-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.blog-search input::placeholder {
  color: var(--muted);
}

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

.blog-card {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 138px;
  height: 138px;
  background: radial-gradient(circle, rgba(58, 140, 255, 0.24) 0%, rgba(58, 140, 255, 0) 72%);
  pointer-events: none;
}

.blog-card.is-highlight {
  border-color: rgba(113, 175, 255, 0.24);
}

.blog-card-meta,
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.blog-card-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.22;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.14);
  color: #9bcbff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-footer div {
  display: grid;
  gap: 0.2rem;
}

.blog-card-footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.blog-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #8ec3ff;
}

.blog-card-footer a:hover {
  color: #c4e0ff;
}

.blog-empty {
  padding: 1.5rem;
}

.blog-source-grid {
  align-items: stretch;
}

body[data-theme="light"] .blog-filter {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(39, 118, 220, 0.16);
  color: #183b63;
}

body[data-theme="light"] .blog-filter:hover,
body[data-theme="light"] .blog-filter.is-active {
  background: rgba(33, 114, 216, 0.1);
  border-color: rgba(39, 118, 220, 0.22);
}

body[data-theme="light"] .blog-search {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(39, 118, 220, 0.16);
}

body[data-theme="light"] .blog-search span {
  color: #2b69aa;
}

body[data-theme="light"] .blog-search input {
  color: #163357;
}

body[data-theme="light"] .blog-tag {
  background: rgba(33, 114, 216, 0.12);
  color: #2a6399;
}

body[data-theme="light"] .blog-card-footer a {
  color: #2367af;
}

@media (max-width: 1080px) {
  .blog-hero-layout,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-editorial-card {
    position: static;
  }

  .blog-hero-layout > :first-child,
  .blog-hero-layout > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .blog-hero {
    padding-top: 2.8rem;
  }

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

  .blog-card-meta,
  .blog-card-footer,
  .blog-filters {
    align-items: flex-start;
  }

  .blog-card-footer {
    flex-direction: column;
  }

  .blog-toolbar {
    padding: 1rem;
  }
}

.article-hero {
  padding-top: 4.8rem;
}

.article-hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 1.6rem;
  align-items: start;
}

.article-hero-copy {
  max-width: 820px;
}

.article-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.article-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(143, 191, 255, 0.14);
  color: var(--muted);
  font-size: 0.88rem;
}

.article-meta-strip .material-symbols-rounded {
  font-size: 1rem;
  color: #8fc4ff;
}

.article-highlight-card {
  padding: 1.6rem;
  display: grid;
  gap: 0.85rem;
  position: sticky;
  top: 108px;
}

.article-highlight-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(26, 115, 232, 0.28), rgba(80, 185, 255, 0.16));
  color: #93c8ff;
  border: 1px solid rgba(151, 197, 255, 0.24);
}

.article-highlight-icon .material-symbols-rounded {
  font-size: 1.4rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 110px;
}

.article-side-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.9rem;
}

.article-toc {
  display: grid;
  gap: 0.55rem;
}

.article-toc a {
  padding: 0.72rem 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(145, 189, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
}

.article-toc a:hover {
  border-color: rgba(132, 185, 255, 0.26);
  background: rgba(26, 115, 232, 0.1);
}

.article-body {
  display: grid;
  gap: 1.3rem;
}

.article-section {
  padding: 1.7rem;
  display: grid;
  gap: 1.1rem;
}

.article-section h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  line-height: 1.15;
}

.article-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.article-section-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.article-section-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(26, 115, 232, 0.28), rgba(80, 185, 255, 0.16));
  color: #8ec3ff;
  border: 1px solid rgba(151, 197, 255, 0.22);
}

.article-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(97, 167, 255, 0.18);
}

.article-callout .material-symbols-rounded {
  color: #9acbff;
}

.article-callout p {
  color: var(--text);
}

.article-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-mini-card {
  padding: 1.3rem;
}

.article-mini-card p {
  font-size: 0.98rem;
}

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

.article-flow-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.article-flow-table th,
.article-flow-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-flow-table th {
  color: #a8d0ff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-flow-table td {
  color: var(--muted);
  line-height: 1.7;
}

.article-flow-table td strong {
  color: var(--text);
}

.article-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-benefit-card {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article-benefit-card .material-symbols-rounded {
  color: #8ec3ff;
  font-size: 1.3rem;
}

.article-benefit-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.article-benefit-card p {
  font-size: 0.96rem;
}

.article-cta-panel {
  margin-top: 0.4rem;
}

body[data-theme="light"] .article-meta-strip span,
body[data-theme="light"] .article-toc a,
body[data-theme="light"] .article-benefit-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(39, 118, 220, 0.14);
}

body[data-theme="light"] .article-callout {
  background: rgba(33, 114, 216, 0.07);
  border-color: rgba(39, 118, 220, 0.16);
}

body[data-theme="light"] .article-meta-strip .material-symbols-rounded,
body[data-theme="light"] .article-benefit-card .material-symbols-rounded,
body[data-theme="light"] .article-section-icon,
body[data-theme="light"] .article-highlight-icon {
  color: #2b6cad;
}

body[data-theme="light"] .article-toc a {
  color: #173b63;
}

body[data-theme="light"] .article-callout p,
body[data-theme="light"] .article-flow-table td strong {
  color: #173b63;
}

body[data-theme="light"] .article-flow-table th {
  color: #2a6296;
}

@media (max-width: 1080px) {
  .article-hero-layout,
  .article-layout,
  .article-benefits-grid,
  .article-principles-grid {
    grid-template-columns: 1fr;
  }

  .article-highlight-card,
  .article-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .article-hero {
    padding-top: 2.8rem;
  }

  .article-section,
  .article-side-card,
  .article-highlight-card {
    padding: 1.25rem;
  }

  .article-section-head {
    flex-direction: column;
  }

  .article-meta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
