/* ================================================================
   LuBru Sistemas — Site Institucional
   ================================================================ */

/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --primary: #FF4B2B;
  --primary-dark: #e0391b;
  --primary-light: rgba(255, 75, 43, 0.08);
  --primary-glow: rgba(255, 75, 43, 0.2);
  --bg: #0a0a0f;
  --bg-alt: #111118;
  --surface: #1a1a24;
  --surface-hover: #22222e;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --text-sec: #9a9ab0;
  --text-muted: #6b6b80;
  --success: #22c55e;
  --whatsapp: #25D366;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --max-width: 1200px;
  --transition: 0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
  font-family: inherit;
}
.btn .material-icons-round { font-size: 20px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 75, 43, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(255, 75, 43, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1eb851;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── NAVBAR ────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}
.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}
.logo-highlight { color: var(--primary); }

.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color var(--transition);
}
.navbar-links a:hover { color: var(--primary); }

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── HERO ──────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 75, 43, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 92, 246, 0.08), transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--primary-light);
  border: 1px solid rgba(255, 75, 43, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── DEMO / SHOWCASE ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.demo-video-wrapper {
  max-width: 900px;
  margin: 0 auto 48px;
}

.demo-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface), rgba(255, 75, 43, 0.03));
}
.demo-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  transition: background var(--transition);
}
.demo-video:hover .demo-video-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.demo-play-icon {
  font-size: 80px !important;
  color: var(--primary);
  filter: drop-shadow(0 4px 20px rgba(255, 75, 43, 0.4));
  transition: transform var(--transition);
}
.demo-video:hover .demo-play-icon {
  transform: scale(1.1);
}
.demo-video-overlay p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.demo-screens {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.demo-screen-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.demo-screen-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.demo-screen-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.demo-screen-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.demo-screen-card p {
  font-size: 12px;
  color: var(--text-sec);
}

@media (max-width: 768px) {
  .demo-screens {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .demo-screens {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── SECTIONS ──────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  border: 1px solid rgba(255, 75, 43, 0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-sec);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── FEATURES ──────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--surface), rgba(255, 75, 43, 0.05));
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--icon-bg-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon .material-icons-round {
  font-size: 26px;
  color: var(--icon-bg);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--text-sec);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition);
}
.feature-cta:hover { gap: 8px; }

.feature-card-more {
  background: linear-gradient(135deg, var(--surface), rgba(255, 75, 43, 0.03));
  border-style: dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── SEGMENTS ──────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.segment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.segment-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.segment-emoji {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.segment-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.segment-card p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
}

.segment-card-cta {
  border-color: var(--primary);
  border-style: dashed;
  background: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── DIFFERENTIALS ─────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.diff-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.diff-icon .material-icons-round {
  font-size: 24px;
  color: var(--primary);
}

.diff-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.diff-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── PLANS ─────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover {
  transform: translateY(-4px);
}

.plan-featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(255, 75, 43, 0.06), var(--surface) 40%);
  transform: scale(1.04);
}
.plan-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-header { margin-bottom: 24px; }
.plan-header h3 {
  font-size: 22px;
  font-weight: 800;
}
.plan-desc {
  font-size: 14px;
  color: var(--text-sec);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}
.plan-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-sec);
}
.plan-value {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-period {
  font-size: 15px;
  color: var(--text-sec);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.plan-features li .material-icons-round {
  font-size: 18px;
  color: var(--success);
}
.plan-feature-disabled {
  color: var(--text-muted);
}
.plan-feature-disabled .material-icons-round {
  color: var(--text-muted) !important;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── SUGGESTIONS ───────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.suggestion-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.suggestion-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239a9ab0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.suggestion-success {
  text-align: center;
  padding: 60px 20px;
}
.suggestion-success .material-icons-round {
  font-size: 64px;
  color: var(--success);
  margin-bottom: 16px;
}
.suggestion-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.suggestion-success p {
  color: var(--text-sec);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── CTA SECTION ───────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.section-cta {
  background: linear-gradient(135deg, var(--bg-alt), rgba(255, 75, 43, 0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-content p {
  color: var(--text-sec);
  font-size: 16px;
  margin-bottom: 32px;
}
.cta-actions {
  margin-bottom: 16px;
}
.cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── FOOTER ────────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.footer {
  padding: 60px 0 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-sec);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-sec);
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── WHATSAPP FLOAT ────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── ANIMATIONS ────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeInUp 0.6s ease backwards;
}
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }

/* Scroll animations */
.feature-card,
.segment-card,
.diff-card,
.plan-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), box-shadow var(--transition);
}
.feature-card.visible,
.segment-card.visible,
.diff-card.visible,
.plan-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ─── RESPONSIVE ────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .navbar-toggle { display: block; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-stats { gap: 30px; }
  .hero-stat-num { font-size: 24px; }

  .features-grid,
  .differentials-grid { grid-template-columns: 1fr; }

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

  .plans-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .segments-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
}

.plan-cents { font-size: 0.4em; font-weight: 600; vertical-align: super; margin-left: 2px; }
