:root {
  --rg-orange: #ff5a00;
  --rg-orange-dark: #e74c00;
  --rg-orange-soft: #fff1e8;
  --rg-navy: #08152f;
  --rg-navy-2: #12213f;
  --rg-text: #172033;
  --rg-muted: #667085;
  --rg-bg: #f6f8fc;
  --rg-card: #ffffff;
  --rg-border: #e3e8f1;
  --rg-success: #13975f;
  --rg-gold: #e3ad13;
  --rg-shadow: 0 24px 70px rgba(8, 21, 47, .12);
  --rg-shadow-sm: 0 10px 32px rgba(8, 21, 47, .08);
  --rg-radius: 24px;
  --rg-max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; scrollbar-gutter: stable; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--rg-bg);
  color: var(--rg-text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open, body.promo50-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--rg-navy); color: #fff; padding: 12px 16px; border-radius: 12px;
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 32px), var(--rg-max)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section-soft { background: #fff; }
.section-title { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-title h2 { margin: 12px 0 14px; color: var(--rg-navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }
.section-title p { margin: 0; color: var(--rg-muted); font-size: 1.08rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 7px 13px;
  border-radius: 999px; color: var(--rg-orange-dark); background: var(--rg-orange-soft);
  text-transform: uppercase; letter-spacing: .09em; font-size: .75rem; font-weight: 900;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rg-orange); box-shadow: 0 0 0 5px rgba(255,90,0,.10); }

.btn {
  min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .nav-link:focus-visible, .faq-question:focus-visible, .access-option:focus-visible { outline: 3px solid rgba(255,90,0,.34); outline-offset: 3px; }
.btn-primary { background: linear-gradient(135deg, #ff6a00, #f04400); color: #fff; box-shadow: 0 14px 28px rgba(255,90,0,.24); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(255,90,0,.31); }
.btn-secondary { background: #fff; color: var(--rg-navy); border-color: var(--rg-border); box-shadow: var(--rg-shadow-sm); }
.btn-secondary:hover { border-color: rgba(255,90,0,.5); color: var(--rg-orange-dark); }
.btn-dark { background: var(--rg-navy); color: #fff; }
.btn-ghost { color: var(--rg-navy); background: transparent; border-color: transparent; }
.btn-block { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px); border-bottom: 1px solid rgba(227,232,241,.85);
}
.navbar { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-logo { width: 225px; height: auto; }
.nav-list { display: flex; align-items: center; gap: 26px; list-style: none; padding: 0; margin: 0; }
.nav-link { color: #344054; font-size: .93rem; font-weight: 750; transition: color .2s; }
.nav-link:hover { color: var(--rg-orange); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { min-height: 44px; padding-inline: 16px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--rg-border); border-radius: 13px; background: #fff; cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--rg-navy); border-radius: 99px; transition: .2s; }
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.hero {
  min-height: 720px; padding: 74px 0 88px; display: grid; align-items: center; overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,90,0,.17), transparent 27%),
    radial-gradient(circle at 7% 94%, rgba(47,87,176,.10), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero::before { width: 360px; height: 360px; right: -130px; top: 160px; border: 1px solid rgba(255,90,0,.18); }
.hero::after { width: 230px; height: 230px; left: -110px; bottom: 10px; border: 1px solid rgba(8,21,47,.09); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr); align-items: center; gap: 58px; position: relative; z-index: 1; }
.hero-copy h1 { margin: 18px 0; max-width: 720px; color: var(--rg-navy); font-size: clamp(2.65rem, 5.4vw, 5rem); line-height: .98; letter-spacing: -.058em; }
.hero-copy h1 span { color: var(--rg-orange); }
.hero-copy > p { max-width: 690px; margin: 0 0 28px; color: var(--rg-muted); font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: #475467; font-size: .9rem; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row span::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #e7f8ef; color: var(--rg-success); font-size: .76rem; }

.dashboard-stage { position: relative; min-height: 520px; perspective: 1200px; }
.dashboard-shell {
  position: absolute; inset: 28px 0 0 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.9);
  border-radius: 28px; background: #fff; box-shadow: 0 40px 90px rgba(8,21,47,.22); transform: rotateY(-5deg) rotateX(2deg);
}
.dashboard-top { height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf0f5; }
.dashboard-brand { display: flex; align-items: center; gap: 10px; color: var(--rg-navy); font-weight: 900; }
.dashboard-brand img { width: 31px; height: 31px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d0d5dd; }
.dashboard-body { display: grid; grid-template-columns: 138px 1fr; min-height: 420px; }
.mock-sidebar { padding: 20px 12px; background: #0d1c39; display: grid; align-content: start; gap: 10px; }
.mock-nav { height: 34px; border-radius: 10px; background: rgba(255,255,255,.07); }
.mock-nav.active { background: linear-gradient(90deg, rgba(255,90,0,.94), rgba(255,90,0,.63)); }
.mock-content { padding: 22px; background: #f7f8fb; }
.mock-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.mock-header h3 { margin: 0; color: var(--rg-navy); font-size: 1.15rem; }
.status-pill { padding: 7px 10px; border-radius: 99px; background: #e7f8ef; color: var(--rg-success); font-size: .7rem; font-weight: 900; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.mock-stat, .order-card { border: 1px solid #e6eaf0; background: #fff; border-radius: 14px; box-shadow: 0 8px 18px rgba(8,21,47,.05); }
.mock-stat { padding: 13px; }
.mock-stat small { color: #98a2b3; display: block; }
.mock-stat strong { color: var(--rg-navy); font-size: 1.18rem; }
.mock-orders { display: grid; gap: 10px; }
.order-card { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 13px; }
.order-card strong { display: block; color: var(--rg-navy); font-size: .83rem; }
.order-card span { color: #98a2b3; font-size: .7rem; }
.order-card b { color: var(--rg-orange); font-size: .76rem; }
.floating-card {
  position: absolute; z-index: 3; padding: 14px 16px; border: 1px solid rgba(227,232,241,.85); border-radius: 18px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px); box-shadow: var(--rg-shadow-sm); animation: float 4.8s ease-in-out infinite;
}
.floating-card strong { display: block; color: var(--rg-navy); font-size: .85rem; }
.floating-card span { color: var(--rg-muted); font-size: .72rem; }
.float-print { right: -18px; top: 8px; }
.float-table { left: -12px; bottom: 8px; animation-delay: -1.4s; }
.float-sales { right: -5px; bottom: 55px; animation-delay: -2.7s; }
.float-icon { float: left; display: grid; place-items: center; width: 36px; height: 36px; margin-right: 10px; border-radius: 11px; background: var(--rg-orange-soft); font-size: 1.08rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.role-card { min-height: 310px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--rg-border); border-radius: var(--rg-radius); background: #fff; box-shadow: var(--rg-shadow-sm); transition: transform .25s, box-shadow .25s; }
.role-card:hover { transform: translateY(-6px); box-shadow: var(--rg-shadow); }
.role-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 19px; background: var(--rg-orange-soft); font-size: 1.75rem; }
.role-card h3 { margin: 18px 0 8px; color: var(--rg-navy); font-size: 1.45rem; }
.role-card p { margin: 0 0 22px; color: var(--rg-muted); }
.role-actions { margin-top: auto; display: grid; gap: 10px; }

.flow-wrap { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; align-items: center; }
.flow-step { min-height: 178px; padding: 18px 12px; position: relative; display: grid; align-content: center; justify-items: center; text-align: center; border: 1px solid var(--rg-border); border-radius: 20px; background: #fff; box-shadow: var(--rg-shadow-sm); }
.flow-step:not(:last-child)::after { content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); z-index: 2; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--rg-orange); color: #fff; font-weight: 900; }
.flow-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 16px; background: #f2f4f8; font-size: 1.35rem; }
.flow-step strong { color: var(--rg-navy); font-size: .91rem; }
.flow-step span { margin-top: 5px; color: var(--rg-muted); font-size: .72rem; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 25px; border: 1px solid var(--rg-border); border-radius: 21px; background: #fff; box-shadow: 0 10px 28px rgba(8,21,47,.06); }
.feature-card .feature-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 14px; background: var(--rg-orange-soft); font-size: 1.28rem; }
.feature-card h3 { margin: 15px 0 6px; color: var(--rg-navy); font-size: 1.1rem; }
.feature-card p { margin: 0; color: var(--rg-muted); font-size: .9rem; }

.plans-section { background: linear-gradient(180deg, #fff 0%, #fff8f3 100%); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan-card { position: relative; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--rg-border); border-radius: 25px; background: #fff; box-shadow: var(--rg-shadow-sm); }
.plan-card.featured { border: 2px solid var(--rg-orange); box-shadow: 0 24px 55px rgba(255,90,0,.15); transform: translateY(-8px); }
.plan-badge { align-self: flex-start; display: inline-flex; min-height: 31px; align-items: center; padding: 5px 11px; border-radius: 999px; background: #e9f4ff; color: #1670c7; font-size: .72rem; font-weight: 900; }
.plan-badge.popular { background: #fff0dc; color: #bc5a00; }
.plan-badge.premium { background: #ffe5a0; color: #805b00; }
.plan-card h3 { margin: 17px 0 7px; color: var(--rg-navy); font-size: 1.55rem; }
.plan-description { min-height: 49px; margin: 0; color: var(--rg-muted); font-size: .9rem; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 25px 0 21px; color: var(--rg-navy); }
.plan-price strong { font-size: 2.25rem; line-height: 1; letter-spacing: -.04em; }
.plan-price span { color: var(--rg-muted); font-size: .77rem; font-weight: 800; }
.plan-list { list-style: none; padding: 0; margin: 0 0 25px; display: grid; gap: 11px; }
.plan-list li { position: relative; padding-left: 24px; color: #475467; font-size: .88rem; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--rg-success); font-weight: 900; }
.plan-card .btn { margin-top: auto; }
.plan-footnote { margin: 20px auto 0; max-width: 780px; text-align: center; color: var(--rg-muted); font-size: .84rem; }

.how-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 52px; align-items: center; }
.how-copy h2 { margin: 12px 0 15px; color: var(--rg-navy); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }
.how-copy > p { color: var(--rg-muted); }
.how-list { display: grid; gap: 15px; margin-top: 25px; }
.how-item { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: start; }
.how-number { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--rg-orange); color: #fff; font-weight: 900; }
.how-item strong { color: var(--rg-navy); display: block; margin-bottom: 2px; }
.how-item span { color: var(--rg-muted); font-size: .9rem; }
.system-map { position: relative; min-height: 420px; border-radius: 28px; background: radial-gradient(circle at center, #fff 0 18%, #f7f8fc 19% 100%); border: 1px solid var(--rg-border); overflow: hidden; box-shadow: var(--rg-shadow); }
.system-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 128px; height: 128px; display: grid; place-items: center; border-radius: 34px; background: #fff; box-shadow: 0 20px 50px rgba(8,21,47,.18); z-index: 2; }
.system-center img { width: 78px; }
.system-node { position: absolute; width: 140px; padding: 14px; text-align: center; border: 1px solid var(--rg-border); border-radius: 17px; background: #fff; box-shadow: var(--rg-shadow-sm); color: var(--rg-navy); font-size: .82rem; font-weight: 850; }
.system-node i { display: block; font-style: normal; font-size: 1.35rem; margin-bottom: 4px; }
.system-node.n1 { left: 28px; top: 32px; }
.system-node.n2 { right: 28px; top: 32px; }
.system-node.n3 { left: 25px; bottom: 34px; }
.system-node.n4 { right: 25px; bottom: 34px; }
.system-node.n5 { left: 50%; top: 18px; transform: translateX(-50%); }
.system-node.n6 { left: 50%; bottom: 18px; transform: translateX(-50%); }
.system-line { position: absolute; left: 50%; top: 50%; width: 68%; height: 68%; transform: translate(-50%,-50%); border: 1px dashed rgba(255,90,0,.38); border-radius: 50%; }

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 13px; }
.faq-item { border: 1px solid var(--rg-border); border-radius: 18px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 22px; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; color: var(--rg-navy); cursor: pointer; font-weight: 850; }
.faq-question::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--rg-orange-soft); color: var(--rg-orange); font-size: 1.2rem; transition: transform .2s; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 22px 22px; color: var(--rg-muted); }

.final-cta { padding: 0 0 92px; }
.cta-shell { padding: 45px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; border-radius: 30px; background: linear-gradient(135deg, #08152f 0%, #14264a 70%, #273d69 100%); color: #fff; box-shadow: 0 30px 75px rgba(8,21,47,.25); overflow: hidden; position: relative; }
.cta-shell::after { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; top: -100px; border-radius: 50%; background: rgba(255,90,0,.22); }
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.04em; }
.cta-copy p { margin: 0; max-width: 720px; color: rgba(255,255,255,.72); }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px; }
.cta-actions .btn-secondary { box-shadow: none; }

.site-footer { padding: 52px 0 28px; background: #061027; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 34px; }
.footer-logo { width: 190px; filter: brightness(0) invert(1); }
.footer-about p { max-width: 410px; font-size: .89rem; }
.footer-col h3 { margin: 5px 0 15px; color: #fff; font-size: .93rem; }
.footer-col a { display: block; padding: 4px 0; color: rgba(255,255,255,.72); font-size: .86rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .8rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }

.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; box-shadow: 0 16px 34px rgba(37,211,102,.3); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }
.whatsapp-label { position: absolute; right: 67px; white-space: nowrap; padding: 8px 11px; border-radius: 9px; background: var(--rg-navy); font-size: .73rem; font-weight: 800; opacity: 0; transform: translateX(7px); pointer-events: none; transition: .2s; }
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }

.modal-backdrop { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 20px; background: rgba(4,12,30,.68); backdrop-filter: blur(8px); }
.modal-backdrop.open { display: grid; }
.access-modal { width: min(100%, 860px); max-height: 90vh; overflow: auto; border-radius: 26px; background: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.28); }
.modal-head { padding: 24px 26px 18px; display: flex; align-items: start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--rg-border); }
.modal-head h2 { margin: 0 0 4px; color: var(--rg-navy); font-size: 1.5rem; }
.modal-head p { margin: 0; color: var(--rg-muted); font-size: .9rem; }
.modal-close { width: 40px; height: 40px; flex: 0 0 auto; border: 1px solid var(--rg-border); border-radius: 12px; background: #fff; cursor: pointer; font-size: 1.25rem; }
.access-list { padding: 22px 26px 26px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.access-option { padding: 17px; display: grid; grid-template-columns: 43px 1fr auto; gap: 12px; align-items: center; border: 1px solid var(--rg-border); border-radius: 16px; background: #fff; transition: .2s; }
.access-option:hover { border-color: rgba(255,90,0,.55); background: #fffaf7; transform: translateY(-2px); }
.access-option i { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: var(--rg-orange-soft); font-style: normal; font-size: 1.2rem; }
.access-option strong { display: block; color: var(--rg-navy); font-size: .91rem; }
.access-option span { color: var(--rg-muted); font-size: .72rem; }
.access-option b { color: var(--rg-orange); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .nav-list { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .dashboard-stage { width: min(100%, 670px); margin: 0 auto; }
  .flow-wrap { grid-template-columns: repeat(4, 1fr); }
  .flow-step:not(:last-child)::after { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .navbar { height: 82px; }
  .brand-logo { width: 190px; }
  .nav-actions > .btn-ghost { display: none; }
  .nav-actions > .btn-primary { display: none; }
  .menu-toggle { display: block; }
  .nav-list {
    position: fixed; top: 82px; left: 0; right: 0; padding: 18px 16px 22px; display: grid; gap: 5px;
    background: rgba(255,255,255,.98); border-bottom: 1px solid var(--rg-border); box-shadow: 0 18px 30px rgba(8,21,47,.08);
    transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { display: block; padding: 11px 12px; border-radius: 10px; }
  .nav-link:hover { background: var(--rg-orange-soft); }
  .role-grid, .feature-grid, .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .flow-wrap { grid-template-columns: repeat(2, 1fr); }
  .cta-shell { grid-template-columns: 1fr; padding: 34px 26px; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-about { grid-column: 1 / -1; }
  .access-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--rg-max)); }
  .section { padding: 70px 0; }
  .hero { min-height: auto; padding: 54px 0 72px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; justify-content: start; text-align: left; width: fit-content; margin-inline: auto; }
  .dashboard-stage { min-height: 390px; margin-top: 15px; }
  .dashboard-shell { inset: 12px 0 0; transform: none; border-radius: 20px; }
  .dashboard-body { grid-template-columns: 73px 1fr; min-height: 320px; }
  .mock-sidebar { padding: 15px 8px; }
  .mock-content { padding: 14px; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .mock-stats .mock-stat:last-child { display: none; }
  .float-print { right: -2px; top: -18px; }
  .float-table { left: -2px; bottom: -14px; }
  .float-sales { display: none; }
  .flow-wrap { grid-template-columns: 1fr 1fr; gap: 9px; }
  .flow-step { min-height: 140px; }
  .system-map { min-height: 500px; }
  .system-node { width: 118px; font-size: .74rem; }
  .system-node.n1, .system-node.n3 { left: 10px; }
  .system-node.n2, .system-node.n4 { right: 10px; }
  .cta-actions { display: grid; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .whatsapp-label { display: none; }
  .modal-head, .access-list { padding-left: 18px; padding-right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* v1.6.6 — Identidade visual original RangoGo */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  line-height: 1;
}
.brand-logo {
  width: 225px;
  height: auto;
  object-fit: contain;
}

.hero-original-brand {
  width: min(100%, 285px);
  margin: 0 0 18px;
}
.hero-original-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-original-brand strong {
  display: block;
  margin-top: 5px;
  color: var(--rg-navy);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-align: center;
}

.dashboard-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.system-center img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.cta-brand-slogan {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffb078;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-logo {
  width: 216px;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 15px;
  background: #fff;
  filter: none;
}
@media (max-width: 1080px) {
  .hero-original-brand { margin-inline: auto; }
}

@media (max-width: 820px) {
  .navbar { height: 82px; }
  .nav-list { top: 82px; }
  .brand-logo { width: 190px; }
}

@media (max-width: 560px) {
  .hero-original-brand { width: min(78vw, 255px); }
  .hero-original-brand strong { font-size: .9rem; }
  .brand-logo { width: 165px; }
  .footer-logo { width: 205px; }
}


/* RangoGo v1.7.2.17.2 — Modal oferta primeiros 50 restaurantes */
.promo50-backdrop{position:fixed;inset:0;z-index:3100;display:none;place-items:center;padding:20px;background:radial-gradient(circle at 50% 15%,rgba(255,90,0,.18),transparent 34%),rgba(4,12,30,.78);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}
.promo50-backdrop.open{display:grid;animation:promo50Fade .22s ease both}
.promo50-modal{position:relative;width:min(100%,570px);max-height:min(92vh,760px);overflow:auto;padding:34px 34px 28px;border:1px solid rgba(255,90,0,.18);border-radius:30px;background:radial-gradient(circle at 90% 0%,rgba(255,90,0,.11),transparent 33%),linear-gradient(180deg,#fff 0%,#fffaf6 100%);box-shadow:0 38px 100px rgba(4,12,30,.34);text-align:center;animation:promo50Enter .32s cubic-bezier(.2,.8,.2,1) both}
.promo50-modal::before{content:"";position:absolute;left:24px;right:24px;top:0;height:4px;border-radius:0 0 999px 999px;background:linear-gradient(90deg,#ff5a00,#ff8a3d,#ffb15f)}
.promo50-close{position:absolute;top:16px;right:16px;width:40px;height:40px;display:grid;place-items:center;border:1px solid #e7eaf0;border-radius:13px;background:rgba(255,255,255,.94);color:#667085;font:inherit;font-size:1.35rem;line-height:1;cursor:pointer;transition:.18s ease}
.promo50-close:hover{border-color:rgba(255,90,0,.36);color:#ff5a00;transform:rotate(4deg)}
.promo50-badge{display:inline-flex;align-items:center;min-height:34px;padding:7px 13px;border-radius:999px;background:#fff0e7;color:#d94d00;font-size:.72rem;font-weight:900;letter-spacing:.045em}
.promo50-icon{width:82px;height:82px;display:grid;place-items:center;margin:22px auto 15px;border-radius:24px;background:#fff;box-shadow:0 16px 40px rgba(8,21,47,.12)}
.promo50-icon img{width:56px;height:56px;object-fit:contain}
.promo50-kicker{margin:0 0 8px;color:#ff5a00;font-size:.72rem;font-weight:900;letter-spacing:.08em}
.promo50-modal h2{margin:0;color:#08152f;font-size:clamp(1.8rem,5vw,2.55rem);line-height:1.08;letter-spacing:-.04em}
.promo50-modal h2>strong{display:block;margin-top:9px;color:#ff5a00;font-size:clamp(2.25rem,7vw,3.55rem);font-weight:950;letter-spacing:-.055em}
.promo50-modal h2>strong small{color:#667085;font-size:.9rem;font-weight:800;letter-spacing:0}
.promo50-description{max-width:470px;margin:18px auto 0;color:#667085;font-size:.98rem;line-height:1.65}
.promo50-description b{color:#344054}
.promo50-benefits{margin:22px 0 0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.promo50-benefits span{min-height:64px;display:grid;place-items:center;padding:10px;border:1px solid #eceef3;border-radius:15px;background:rgba(255,255,255,.82);color:#344054;font-size:.75rem;font-weight:800;line-height:1.25}
.promo50-actions{margin-top:23px;display:grid;gap:10px}
.promo50-cta{width:100%;min-height:54px;font-size:.96rem}
.promo50-later{min-height:44px;border:0;background:transparent;color:#667085;font:inherit;font-size:.83rem;font-weight:750;cursor:pointer}
.promo50-later:hover{color:#ff5a00}
.promo50-note{margin:10px 0 0;color:#98a2b3;font-size:.68rem;line-height:1.45}
@keyframes promo50Fade{from{opacity:0}to{opacity:1}}
@keyframes promo50Enter{from{opacity:0;transform:translateY(18px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}
@media(max-width:620px){
  .promo50-backdrop{padding:12px;align-items:center}
  .promo50-modal{padding:30px 19px 22px;border-radius:24px}
  .promo50-close{top:12px;right:12px}
  .promo50-icon{width:70px;height:70px;margin-top:19px}
  .promo50-icon img{width:48px;height:48px}
  .promo50-benefits{grid-template-columns:1fr}
  .promo50-benefits span{min-height:44px}
}
@media(prefers-reduced-motion:reduce){.promo50-backdrop.open,.promo50-modal{animation:none}}
