/* Baseado na identidade visual do export TopoBR (index.html de referência) */
:root {
  --color-primary: #eeb20a ;
  --color-primary-dark: #CA8A04;
  --color-accent: #FACC15;
  --color-text: #191717;
  --color-muted: #5c534f;
  --color-border: #e0e2e3;
  --color-surface: #FEF3C7;
  --color-hero-overlay: rgba(25, 23, 23, 0.55);
  --font: "Montserrat", system-ui, sans-serif;
  --radius: 12px;
  --header-h: 72px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.brand:hover {
  text-decoration: none;
}

.brand:hover .brand-text {
  color: var(--color-primary-dark);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-desktop a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
}

.btn-whatsapp {
  justify-content: center;
  line-height: 1;
}

.btn-whatsapp:hover {
  text-decoration: none;
}

.btn-whatsapp-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-text);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-mobile a {
  color: var(--color-text);
  font-weight: 600;
  padding: 8px 0;
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .nav-desktop,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 32px) 20px 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/RAFA.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      105deg,
      var(--color-hero-overlay) 0%,
      rgba(25, 23, 23, 0.3) 55%,
      rgba(25, 23, 23, 0.4) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-copy {
  color: #fff;
  max-width: 520px;
}

.subh {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 12px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy .destaque {
  color: #FEF3C7;
}

.destaque {
  color: var(--color-primary);
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: 1rem;
  opacity: 0.95;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ctas .btn-primary {
  background: #fff;
  color: var(--color-text);
}

.hero-ctas .btn-primary:hover {
  background: #f3f3f3;
}

.hero-ctas .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.hero-side {
  justify-self: end;
}

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
}

.pill-list svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-side {
    justify-self: start;
  }
}

/* Stats — modelo icon-box + divisores (fundo neutro) */
.stats {
  --stat-divider-accent: #fde68a;
  background: #fafafa;
  border-block: 1px solid var(--color-border);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 12px;
}

.stat-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 200px;
  min-width: 0;
  max-width: 260px;
}

.stat-box-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--color-primary-dark);
}

.stat-box-icon svg {
  display: block;
}

.stat-box-content {
  min-width: 0;
}

.stat-box-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.stat-box-desc {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.stat-divider {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 4px;
}

.stat-divider svg {
  display: block;
  height: 100px;
  width: auto;
}

.stat-divider-accent {
  fill: var(--stat-divider-accent);
}

@media (max-width: 900px) {
  .stat-divider {
    display: none;
  }

  .stats-inner {
    gap: 28px 20px;
  }

  .stat-box {
    flex: 1 1 calc(50% - 20px);
    max-width: none;
  }
}

@media (max-width: 520px) {
  .stat-box {
    flex: 1 1 100%;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* Sections */
.section {
  padding: 72px 20px;
}

.section.alt {
  background: var(--color-surface);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section .lead {
  margin: 0 0 36px;
  color: var(--color-muted);
  max-width: 60ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.split p {
  margin: 0;
  color: var(--color-muted);
}

.section-about-showcase {
  background: #f3f4f6;
  padding: 0;
}

.section-about-showcase .section-inner {
  max-width: none;
  width: 100%;
  margin: 0;
}

.about-showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(420px, 1.2fr);
  gap: 42px;
  align-items: center;
  background: #fff;
  border-radius: 0;
  padding: 38px 52px 30px 0;
  overflow: hidden;
}

.about-showcase-side {
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  min-width: 170px;
  background: linear-gradient(180deg, #facc15 0%, #eeb20a  100%);
}

.about-showcase-side::before,
.about-showcase-side::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.about-showcase-side::before {
  left: 22%;
}

.about-showcase-side::after {
  left: 66%;
}

.about-showcase-side img {
  position: absolute;
  left: 23%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(25, 23, 23, 0.22);
  background: #fff;
}

.about-showcase-media,
.about-showcase-copy {
  position: relative;
  z-index: 1;
}

.about-showcase-media {
  margin-left: clamp(120px, 15vw, 220px);
}

.about-showcase-media img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 38px rgba(25, 23, 23, 0.2);
}

.about-showcase-copy {
  max-width: 560px;
  transform: translateX(-24px);
}

.about-showcase-copy .subh {
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.about-showcase-copy h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.about-showcase-copy p {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.about-showcase-cta {
  margin-top: 18px;
}

.topo-expertise {
  background: #191717;
  color: #ffffff;
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.topo-expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(234, 179, 8, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(234, 179, 8, 0.10), transparent 46%);
  pointer-events: none;
}

.topo-expertise::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(234, 179, 8, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.expertise-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.expertise-header {
  max-width: 780px;
  margin-bottom: 44px;
}

.expertise-location-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 18px;
  align-items: stretch;
  margin: 0 0 34px;
}

.expertise-location-copy {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.expertise-location-tag {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EAB308;
}

.expertise-location-copy h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.expertise-location-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.expertise-location-copy .btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.expertise-map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 230px;
}

.expertise-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 230px;
  border: 0;
  display: block;
}

.topo-map-section {
  background-color: #f5f5f5;
  background-image: url("../images/backgroud.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.topo-map-section::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 360px;
  height: 360px;
  background: rgba(234, 179, 8, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.topo-map-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(234, 179, 8, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.topo-map-container {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.topo-map-header {
  max-width: 760px;
  margin: 0 auto 38px;
}

.topo-map-tag {
  display: inline-block;
  color: #EAB308;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.topo-map-header h2 {
  color: #191717;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.topo-map-header p {
  color: rgba(25, 23, 23, 0.68);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 650px;
}

.topo-map-box {
  width: min(860px, 100%);
  height: 430px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #EAB308;
  border: 1px solid rgba(25, 23, 23, 0.10);
  box-shadow: 0 28px 70px rgba(25, 23, 23, 0.14);
}

.topo-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.95) contrast(1.02);
}

.topo-map-info {
  margin-top: 30px;
}

.topo-map-info h3 {
  color: #191717;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px;
}

.topo-map-info p {
  color: rgba(25, 23, 23, 0.65);
  font-size: 16px;
  margin: 0 0 24px;
}

.topo-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 42px;
  border-radius: 999px;
  background: #EAB308;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(234, 179, 8, 0.32);
  transition: all 0.25s ease;
}

.topo-map-button:hover {
  transform: translateY(-3px);
  background: #CA8A04;
  box-shadow: 0 20px 42px rgba(234, 179, 8, 0.38);
}

.section-tag {
  display: inline-block;
  color: #EAB308;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.expertise-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.expertise-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expertise-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 28px;
  min-height: 235px;
  transition: all 0.25s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 179, 8, 0.55);
  background: rgba(255, 255, 255, 0.075);
}

.expertise-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #EAB308;
  color: #191717;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.28);
}

.expertise-card h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 12px;
  font-weight: 800;
}

.expertise-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 980px) {
  .section-about-showcase {
    padding: 0 16px;
  }

  .section-about-showcase .section-inner {
    max-width: var(--max);
    margin: 0 auto;
  }

  .about-showcase-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 22px;
  }

  .about-showcase-copy {
    transform: none;
  }

  .about-showcase-side {
    width: 100%;
    min-width: 0;
    height: 160px;
    inset: 0 0 auto 0;
  }

  .about-showcase-side::before {
    left: 10%;
  }

  .about-showcase-side::after {
    left: 38%;
  }

  .about-showcase-side img {
    left: 12%;
    top: 80px;
    transform: translate(-50%, -50%);
  }

  .about-showcase-media {
    margin: 52px 0 0;
  }
}

@media (max-width: 600px) {
  .about-showcase-side {
    height: 130px;
  }

  .about-showcase-side img {
    left: 18%;
    width: 64px;
    height: 64px;
  }

  .about-showcase-media {
    margin-top: 36px;
  }

  .about-showcase-media img {
    border-radius: 16px;
  }
}

@media (max-width: 1100px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topo-expertise {
    padding: 60px 0;
  }

  .expertise-container {
    width: min(1180px, calc(100% - 32px));
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-location-card {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: auto;
    padding: 24px;
  }

  .expertise-header {
    margin-bottom: 32px;
  }

  .expertise-header h2 {
    font-size: 30px;
  }

  .expertise-header p {
    font-size: 16px;
  }

  .topo-map-section {
    padding: 64px 0;
  }

  .topo-map-container {
    width: min(100% - 32px, 1080px);
  }

  .topo-map-header h2 {
    font-size: 38px;
  }

  .topo-map-box {
    height: 330px;
    border-radius: 22px;
  }

  .topo-map-info h3 {
    font-size: 20px;
  }

  .topo-map-button {
    width: 100%;
    padding: 0 24px;
  }
}

.topo-trust-section {
  background-color: #f5f5f5;
  background-image: url("../images/backgroud.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.topo-trust-section::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 80px;
  width: 360px;
  height: 360px;
  background: rgba(234, 179, 8, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.topo-trust-section::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(234, 179, 8, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.topo-trust-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topo-trust-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.topo-section-tag {
  display: inline-block;
  color: #EAB308;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.topo-trust-header h2 {
  color: #191717;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.topo-trust-header p {
  color: rgba(25, 23, 23, 0.68);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 680px;
}

.topo-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.topo-trust-card {
  background: #ffffff;
  border: 1px solid rgba(25, 23, 23, 0.10);
  border-radius: 26px;
  padding: 32px;
  min-height: 280px;
  box-shadow: 0 24px 60px rgba(25, 23, 23, 0.07);
  transition: all 0.25s ease;
}

.topo-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 179, 8, 0.55);
  box-shadow: 0 30px 70px rgba(25, 23, 23, 0.11);
}

.topo-trust-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(234, 179, 8, 0.13);
  color: #CA8A04;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.topo-trust-card h3 {
  color: #191717;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 14px;
}

.topo-trust-card p {
  color: rgba(25, 23, 23, 0.66);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.topo-trust-bottom {
  margin-top: 30px;
  background: #191717;
  border-radius: 28px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.topo-trust-bottom::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 260px;
  height: 260px;
  background: rgba(234, 179, 8, 0.20);
  border-radius: 50%;
}

.topo-trust-stat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.topo-trust-stat strong {
  color: #EAB308;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.topo-trust-stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.topo-trust-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-radius: 999px;
  background: #EAB308;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 16px 34px rgba(234, 179, 8, 0.30);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.topo-trust-button:hover {
  background: #CA8A04;
  transform: translateY(-3px);
}

@media (max-width: 980px) {
  .topo-trust-grid {
    grid-template-columns: 1fr;
  }

  .topo-trust-card {
    min-height: auto;
  }

  .topo-trust-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topo-trust-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .topo-trust-section {
    padding: 68px 0;
  }

  .topo-trust-container {
    width: min(1120px, calc(100% - 32px));
  }

  .topo-trust-header h2 {
    font-size: 36px;
  }

  .topo-trust-card {
    padding: 26px;
    border-radius: 22px;
  }

  .topo-trust-bottom {
    padding: 26px;
    border-radius: 22px;
  }

  .topo-trust-stat strong {
    font-size: 24px;
  }
}

.topo-cta-section {
  background: linear-gradient(135deg, #191717 0%, #3a2d0a 45%, #EAB308 100%);
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

.topo-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.10), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
}

.topo-cta-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.topo-cta-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
  gap: 42px;
}

.topo-cta-content {
  max-width: 760px;
}

.topo-cta-tag {
  display: inline-block;
  color: #FEF3C7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.topo-cta-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.topo-cta-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  max-width: 660px;
}

.topo-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.topo-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  background: #ffffff;
  color: #191717;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.topo-cta-button:hover {
  transform: translateY(-3px);
  background: #FEF3C7;
}

.topo-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition: all 0.25s ease;
}

.topo-cta-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.topo-cta-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.topo-cta-card strong {
  display: block;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.topo-cta-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .topo-cta-container {
    grid-template-columns: 1fr;
  }

  .topo-cta-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .topo-cta-section {
    padding: 70px 0;
  }

  .topo-cta-container {
    width: min(1120px, calc(100% - 32px));
  }

  .topo-cta-content h2 {
    font-size: 34px;
  }

  .topo-cta-content p {
    font-size: 16px;
  }

  .topo-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topo-cta-button,
  .topo-cta-link {
    width: 100%;
  }

  .topo-cta-card {
    padding: 26px;
    border-radius: 22px;
  }

  .topo-cta-card strong {
    font-size: 22px;
  }
}

.section.faq,
.section.alt.faq {
  background: #f5f5f5 url("../images/backgroud.png") repeat center !important;
  padding: 86px 0;
}

#blog.section {
  background: #f5f5f5 url("../images/backgroud.png") repeat center;
}

.faq .section-inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.faq .section-tag {
  display: inline-block;
  color: rgba(25, 23, 23, 0.58);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq h2 {
  color: #191717;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 900;
}

.faq .lead {
  color: rgba(25, 23, 23, 0.68);
  font-size: 17px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 34px;
}

.faq details {
  background: #ffffff;
  border: 1px solid rgba(25, 23, 23, 0.10);
  border-radius: 18px;
  padding: 0;
  margin-bottom: 14px;
  box-shadow: 0 16px 38px rgba(25, 23, 23, 0.06);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  color: #191717;
  font-size: 17px;
  font-weight: 900;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(25, 23, 23, 0.55);
  font-size: 26px;
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  color: rgba(25, 23, 23, 0.68);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
  padding: 0 26px 24px;
}

@media (max-width: 640px) {
  .section.faq,
  .section.alt.faq {
    padding: 64px 0;
  }

  .faq .section-inner {
    width: min(980px, calc(100% - 32px));
  }

  .faq h2 {
    font-size: 34px;
  }

  .faq summary {
    padding: 20px 52px 20px 22px;
    font-size: 16px;
  }

  .faq summary::after {
    right: 22px;
  }

  .faq details p {
    padding: 0 22px 22px;
  }
}

.site-footer {
  background: #191717;
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 20px;
  font-size: 0.875rem;
}

.site-footer a {
  color: #FACC15;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
