:root {
  --bg: #090a0f;
  --bg-soft: #10121a;
  --card: rgba(19, 21, 31, 0.78);
  --card-solid: #141722;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7f7fb;
  --muted: #aeb3c2;
  --accent: #ff7a18;
  --accent-2: #ffb347;
  --good: #78e6b1;
  --warning: #ffd38a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 122, 24, 0.14), transparent 27rem),
    radial-gradient(circle at 85% 18%, rgba(122, 92, 255, 0.10), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 94px 0; position: relative; }
.section-tight { padding: 62px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 145, 72, 0.28);
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.08);
  color: #ffc18f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dot { width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 18px var(--accent); }

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); line-height: 0.98; letter-spacing: -0.058em; margin-bottom: 26px; }
h2 { font-size: clamp(2rem, 4.5vw, 3.35rem); line-height: 1.04; letter-spacing: -0.045em; margin-bottom: 18px; }
h3 { font-size: 1.18rem; letter-spacing: -0.02em; margin-bottom: 8px; }
p { color: var(--muted); }
.lead { font-size: clamp(1.06rem, 2vw, 1.28rem); max-width: 720px; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.gradient-text { background: linear-gradient(120deg, #fff 15%, #ffbc83 60%, #ff7a18 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(9, 10, 15, 0.74);
  backdrop-filter: blur(18px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--accent-2), var(--accent)); color: #170b03; font-weight: 1000;
  box-shadow: 0 10px 30px rgba(255,122,24,.27);
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a:not(.btn) { color: #d7d9e2; text-decoration: none; font-size: .93rem; }
.nav-links a:not(.btn):hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 13px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary { color: #1b0b00; background: linear-gradient(135deg, #ffc17f, #ff7a18); box-shadow: 0 15px 45px rgba(255,122,24,.24); }
.btn-secondary { background: rgba(255,255,255,.045); color: #fff; border: 1px solid var(--line); }
.btn-small { min-height: 42px; padding: 0 16px; font-size: .88rem; }
.btn-wide { min-width: 260px; }
.btn-icon { font-size: 1.1rem; }

.hero { padding: 82px 0 58px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 68px; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.microcopy { display: flex; flex-wrap: wrap; gap: 10px 18px; color: #9298a9; font-size: .84rem; }
.microcopy span::before { content: "✓"; margin-right: 6px; color: var(--good); font-weight: 900; }

.terminal-wrap { position: relative; }
.terminal-wrap::before {
  content: ""; position: absolute; width: 78%; height: 62%; right: -9%; top: -11%; border-radius: 50%;
  background: rgba(255,122,24,.22); filter: blur(80px); z-index: -1;
}
.terminal {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(160deg, rgba(23,25,36,.96), rgba(11,12,18,.97));
  box-shadow: var(--shadow);
  border-radius: 22px;
  overflow: hidden;
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}
.terminal-top { height: 46px; display: flex; align-items: center; gap: 8px; padding: 0 16px; background: rgba(255,255,255,.035); border-bottom: 1px solid var(--line); }
.terminal-top i { width: 10px; height: 10px; border-radius: 50%; background: #525767; }
.terminal-top i:first-child { background: #ff6b5f; }
.terminal-top i:nth-child(2) { background: #f8c44f; }
.terminal-top i:nth-child(3) { background: #57d17f; }
.terminal-title { margin-left: 9px; color: #8f95a6; font: 600 .77rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.terminal-body { padding: 25px; font: 500 .83rem/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #cfd4e3; min-height: 410px; }
.code-line { display: block; white-space: nowrap; overflow: hidden; }
.c-orange { color: #ff9f57; }
.c-purple { color: #caa8ff; }
.c-green { color: #74e6ae; }
.c-blue { color: #7fc8ff; }
.c-dim { color: #747b8d; }
.agent-card {
  margin-top: 22px; padding: 15px; border: 1px solid rgba(255,122,24,.22); border-radius: 13px;
  background: rgba(255,122,24,.055); display: grid; grid-template-columns: 34px 1fr; gap: 12px;
}
.agent-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #201006; background: linear-gradient(135deg, #ffc180, #ff7a18); font-weight: 900; }
.agent-card b { color: #fff; display: block; }
.agent-card small { color: #a8adbb; line-height: 1.45; display: block; }

.trust-strip { padding: 24px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 6px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: #fff; font-size: .95rem; }
.trust-item span { color: #9298a8; font-size: .82rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.card:hover { border-color: rgba(255,122,24,.22); }
.icon-box { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(255,122,24,.11); border: 1px solid rgba(255,122,24,.18); color: #ffb174; font-size: 1.1rem; }
.card p:last-child { margin-bottom: 0; }

.problem-wrap { display: grid; grid-template-columns: .86fr 1.14fr; gap: 60px; align-items: start; }
.problem-sticky { position: sticky; top: 118px; }
.problem-list { display: grid; gap: 15px; }
.problem-item { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.problem-item .num { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: #1d1f2b; color: #ffad6c; font-weight: 900; }
.problem-item p { margin: 0; }

.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 35px; }
.module { padding: 23px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); }
.module-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.module-code { font: 700 .72rem ui-monospace, monospace; color: #ffad6c; background: rgba(255,122,24,.09); padding: 5px 8px; border-radius: 7px; }
.module p { margin: 0; }

.split-box { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); display: grid; grid-template-columns: 1fr 1fr; }
.split-col { padding: 36px; }
.split-col:first-child { border-right: 1px solid var(--line); }
.check-list, .x-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li, .x-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: #c9ceda; }
.check-list li::before { content: "✓"; color: var(--good); font-weight: 900; }
.x-list li::before {
  content: "";
  width: 15px; height: 15px; align-self: center;
  background-color: #ff9a8f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

.value-panel { display: grid; grid-template-columns: 1.08fr .92fr; gap: 22px; align-items: stretch; }
.value-main, .value-side { border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; background: linear-gradient(145deg, rgba(255,122,24,.08), rgba(255,255,255,.025)); }
.value-side { background: rgba(255,255,255,.025); }
.value-points { list-style: none; padding: 0; margin: 24px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.value-points li { display: flex; gap: 9px; align-items: start; color: #d4d7e0; font-size: .92rem; }
.value-points li::before { content: "✓"; color: var(--good); font-weight: 900; }
.price-hidden { display: flex; align-items: center; gap: 13px; padding: 16px; margin: 18px 0; border-radius: 13px; background: rgba(255,255,255,.045); border: 1px solid var(--line); }
.price-hidden .lock { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: #202331; }
.price-hidden strong { display: block; }
.price-hidden span { display: block; color: var(--muted); font-size: .86rem; }

.faq { display: grid; gap: 12px; max-width: 860px; margin: 34px auto 0; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); overflow: hidden; }
.faq-button { width: 100%; padding: 20px 22px; color: #fff; background: transparent; border: 0; display: flex; align-items: center; justify-content: space-between; text-align: left; cursor: pointer; font-weight: 780; }
.faq-button span:last-child { color: #ffad6c; font-size: 1.35rem; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-answer p { padding: 0 22px 20px; margin: 0; }
.faq-item.open .faq-answer { max-height: 280px; }
.faq-item.open .faq-button span:last-child { transform: rotate(45deg); }

.cta-panel { border: 1px solid rgba(255,122,24,.22); border-radius: 28px; padding: 52px; text-align: center; background: radial-gradient(circle at top, rgba(255,122,24,.18), transparent 60%), #11131c; box-shadow: var(--shadow); }
.cta-panel .lead { margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.notice { padding: 16px 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); color: #aeb4c3; font-size: .84rem; }
.notice strong { color: #fff; }

.site-footer { padding: 52px 0 86px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: flex-end; }
.footer-links a { color: #b2b7c4; text-decoration: none; font-size: .88rem; }
.footer-note { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .78rem; color: #7f8595; }

.sticky-mobile { display: none; }
.cookie-banner { position: fixed; z-index: 150; left: 18px; right: 18px; bottom: 18px; max-width: 720px; margin: auto; border: 1px solid var(--line); border-radius: 16px; background: rgba(17,19,28,.96); backdrop-filter: blur(16px); box-shadow: var(--shadow); padding: 16px; }
.cookie-inner { display: flex; align-items: center; gap: 18px; }
.cookie-inner p { margin: 0; font-size: .83rem; }
.cookie-actions { margin-left: auto; display: flex; gap: 8px; flex-shrink: 0; }

.legal-hero { padding: 82px 0 30px; }
.legal-content { max-width: 860px; padding-bottom: 90px; }
.legal-content h2 { font-size: 1.45rem; margin-top: 42px; letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: #ffae70; }
.form { display: grid; gap: 14px; max-width: 680px; }
.form label { font-weight: 700; font-size: .9rem; }
.form input, .form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #12141d; color: #fff; padding: 14px; outline: none; }
.form input:focus, .form textarea:focus { border-color: rgba(255,122,24,.55); box-shadow: 0 0 0 3px rgba(255,122,24,.10); }

@media (max-width: 980px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid, .problem-wrap, .value-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .terminal { transform: none; max-width: 690px; }
  .problem-sticky { position: static; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 17px; margin-bottom: 17px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions .btn { width: 100%; }
  .grid-3, .grid-2, .modules, .value-points, .split-box, .footer-grid { grid-template-columns: 1fr; }
  .split-col:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .terminal-body { min-height: auto; padding: 18px; font-size: .72rem; }
  .code-line { white-space: normal; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 14px 0; margin: 0 !important; }
  .trust-item:last-child { border-bottom: 0; }
  .cta-panel { padding: 34px 20px; }
  .footer-links { justify-content: flex-start; }
  .sticky-mobile { display: block; position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; transform: translateY(120%); opacity: 0; transition: .25s ease; }
  .sticky-mobile.visible { transform: translateY(0); opacity: 1; }
  .sticky-mobile .btn { width: 100%; box-shadow: 0 16px 45px rgba(0,0,0,.46); }
  .site-footer { padding-bottom: 120px; }
  .cookie-inner { align-items: flex-start; flex-direction: column; }
  .cookie-actions { margin-left: 0; width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* BetterDev — base visual */
.brand-logo { width: 38px; height: 38px; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1rem; color: #fff; }
.brand-copy small { margin-top: 4px; color: #8e95a7; font-size: .66rem; font-weight: 700; letter-spacing: .025em; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.career-section { background: linear-gradient(180deg, rgba(255,122,24,.045), transparent 70%); border-block: 1px solid rgba(255,255,255,.045); }
.career-grid { margin-top: 36px; }
.career-card { padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); }
.career-card:hover { border-color: rgba(255,122,24,.3); transform: translateY(-3px); transition: .2s ease; }
.career-icon { width: 45px; height: 45px; margin-bottom: 17px; display: grid; place-items: center; border-radius: 13px; color: #241005; background: linear-gradient(135deg, #ffd19b, #ff7a18); font-size: 1.15rem; font-weight: 900; box-shadow: 0 12px 32px rgba(255,122,24,.2); }
.career-highlight { max-width: 920px; margin: 30px auto 0; padding: 23px 25px; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; border: 1px solid rgba(255,122,24,.22); border-radius: 17px; background: rgba(255,122,24,.055); }
.career-highlight p { margin: 0; color: #c9ceda; }
.career-highlight-tag { padding: 7px 10px; border-radius: 999px; background: linear-gradient(135deg, #ffd19b, #ff7a18); color: #1b0b00; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.offer-card { position: relative; overflow: hidden; }
.offer-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -85px; top: -95px; border-radius: 50%; background: rgba(255,122,24,.13); filter: blur(12px); pointer-events: none; }
.price-block { position: relative; z-index: 1; margin: 25px 0 22px; padding: 20px; border-radius: 16px; border: 1px solid rgba(255,152,65,.26); background: rgba(9,10,15,.43); }
.price-kicker { display: block; margin-bottom: 3px; color: #ffbb82; font-size: .73rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.price-block strong { display: block; color: #fff; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.05; letter-spacing: -.055em; }
.price-detail { display: block; margin-top: 8px; color: #979dad; font-size: .82rem; }
.offer-note { margin: 13px 0 0; font-size: .76rem; color: #828899; }
.career-value-side h3 { margin-top: 18px; font-size: 1.6rem; line-height: 1.15; }
.mini-proof { margin-top: 24px; padding: 17px; display: grid; grid-template-columns: 68px 1fr; gap: 14px; align-items: center; border-radius: 14px; border: 1px solid rgba(120,230,177,.18); background: rgba(120,230,177,.05); }
.mini-proof > span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: rgba(120,230,177,.12); color: var(--good); font-weight: 950; font-size: 1.05rem; }
.mini-proof p { margin: 0; font-size: .86rem; }
.mini-proof strong { color: #fff; }

.floating-offer { position: fixed; z-index: 88; right: 18px; top: 52%; transform: translateY(-50%); display: flex; align-items: center; gap: 10px; padding: 13px 13px 13px 17px; border-radius: 999px; background: linear-gradient(135deg, #ffd09a, #ff7a18); color: #1b0b00; text-decoration: none; font-weight: 950; box-shadow: 0 18px 55px rgba(0,0,0,.46), 0 10px 35px rgba(255,122,24,.24); transition: transform .2s ease, filter .2s ease; }
.floating-offer:hover { transform: translateY(-50%) translateX(-3px); filter: brightness(1.06); }
.floating-offer b { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: rgba(27,11,0,.12); font-size: 1.05rem; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .floating-offer { display: none; }
}

@media (max-width: 680px) {
  .brand-copy small { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .career-highlight { grid-template-columns: 1fr; }
  .career-highlight-tag { width: fit-content; }
  .price-block strong { font-size: 2.25rem; }
  .mini-proof { grid-template-columns: 56px 1fr; }
  .mini-proof > span { width: 54px; height: 54px; font-size: .9rem; }
}

/* BetterDev — identidade premium e ícones SVG */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.btn-svg { width: 18px; height: 18px; }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255,122,24,.25));
}
.brand-copy strong { font-size: 1.06rem; letter-spacing: -.035em; }
.brand-copy strong span { color: var(--accent); }
.brand-copy small { color: #969dad; font-size: .64rem; letter-spacing: .065em; text-transform: uppercase; }

.agent-icon svg, .career-icon svg, .icon-box svg, .module-icon svg, .trust-icon svg,
.mini-proof svg, .heading-icon, .career-highlight-tag svg { width: 21px; height: 21px; }
.agent-icon { color: #1d0c02; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #ffb87c; background: rgba(255,122,24,.075); border: 1px solid rgba(255,122,24,.15); }
.trust-icon svg { width: 18px; height: 18px; }
.career-icon { color: #251005; }
.career-highlight-tag { display: inline-flex; align-items: center; gap: 6px; }
.career-highlight-tag svg { width: 15px; height: 15px; }
.module-top { align-items: flex-start; }
.module-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: #ffb275; background: rgba(255,122,24,.09); border: 1px solid rgba(255,122,24,.16); }
.module-icon svg { width: 21px; height: 21px; }
.module-top h3 { margin-top: 5px; }
.module-cta { margin-top: 30px; }
.audience-box { margin-top: 34px; }
.heading-icon { vertical-align: -4px; margin-right: 7px; }
.heading-icon.positive { color: var(--good); }
.heading-icon.negative { color: #ff9a8f; }
.footer-description { margin-top: 14px; max-width: 560px; }

.floating-offer {
  right: 20px;
  top: 52%;
  min-width: 248px;
  padding: 10px 11px;
  gap: 11px;
  border: 1px solid rgba(255,172,101,.42);
  background: linear-gradient(145deg, rgba(25,19,18,.97), rgba(12,13,19,.98));
  color: #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,122,24,.05), 0 0 38px rgba(255,122,24,.17);
  overflow: hidden;
  isolation: isolate;
}
.floating-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(110deg, transparent 10%, rgba(255,140,56,.11) 52%, transparent 88%);
}
.floating-offer::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 90px;
  height: 90px;
  right: -34px;
  top: -34px;
  border-radius: 50%;
  background: rgba(255,122,24,.25);
  filter: blur(28px);
}
.floating-offer:hover { transform: translateY(-50%) translateX(-5px); border-color: rgba(255,190,130,.7); }
.floating-glow { position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.floating-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; color: #261005; background: linear-gradient(145deg, #ffd09a, #ff7a18); box-shadow: 0 11px 28px rgba(255,122,24,.27); }
.floating-icon svg { width: 20px; height: 20px; }
.floating-copy { display: grid; line-height: 1.05; flex: 1; }
.floating-copy small { color: #aeb4c3; font-size: .66rem; font-weight: 700; letter-spacing: .025em; }
.floating-copy strong { margin-top: 5px; color: #fff; font-size: .96rem; }
.floating-arrow { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; color: #ffb57a; background: rgba(255,122,24,.09); border: 1px solid rgba(255,122,24,.14); transition: .2s ease; }
.floating-arrow svg { width: 17px; height: 17px; }
.floating-offer:hover .floating-arrow { transform: translate(2px,-2px); color: #fff; background: rgba(255,122,24,.18); }

@media (max-width: 680px) {
  .brand-logo { width: 42px; height: 42px; }
  .brand-copy strong { font-size: .98rem; }
  .trust-item { padding-inline: 0; }
}
