/* Processaí Design System - Recesso Jurídico */

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Color Palette */
  --bg-primary: #070D1E;
  --bg-secondary: #0D1730;
  --bg-card: rgba(18, 30, 61, 0.7);
  --bg-card-hover: rgba(24, 40, 80, 0.85);

  --accent-cyan: #38BDF8;
  --accent-blue: #3B82F6;
  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  --accent-purple: #8B5CF6;

  --text-white: #FFFFFF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;

  --border-glass: rgba(255, 255, 255, 0.1);
  --border-active: rgba(56, 189, 248, 0.4);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(245, 158, 11, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(56, 189, 248, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 65%, rgba(245, 158, 11, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 30, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  opacity: 0.9;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.brand-badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Navigation Tabs next to year selector */
.nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 23, 48, 0.7);
  border: 1px solid var(--border-glass);
  padding: 4px;
  border-radius: var(--radius-sm);
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.nav-tab:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-tab.active {
  background: var(--accent-blue);
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.year-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

.year-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.year-select {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
}

.year-select option {
  background: var(--bg-secondary);
  color: var(--text-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: var(--border-active);
}

.btn-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--accent-cyan);
  color: var(--text-white);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

/* Main Layout */
.main-content {
  flex: 1;
  width: 100%;
}

.hero-section {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Status Badge */
.status-badge-wrapper {
  margin-bottom: 1.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-cyan);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
}

.status-badge.in-recess {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
}

.status-badge.finished {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--accent-green);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* Countdown Cards */
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.timer-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  opacity: 0.7;
}

.timer-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
}

.timer-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timer-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Status Message Box */
.status-message-box {
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow-gold);
}

.hidden {
  display: none !important;
}

/* Progress Bar */
.progress-section {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.progress-percent {
  color: var(--accent-cyan);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.progress-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-gold));
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.progress-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Dates Banner */
.dates-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.date-chip {
  background: rgba(13, 23, 48, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.date-chip.highlight {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.chip-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.date-chip strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-white);
}

.date-chip.highlight strong {
  color: var(--accent-gold);
}

.date-chip small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calendar-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Calculator Section */
.calculator-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(13, 23, 48, 0.5), transparent);
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.calc-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-white);
}

.calc-form button {
  grid-column: span 3;
  margin-top: 0.5rem;
}

/* Calc Results */
.calc-result {
  margin-top: 2rem;
  padding: 1.75rem;
  background: rgba(13, 23, 48, 0.8);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  animation: fadeIn 0.4s ease;
}

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

.result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.25rem;
}

.result-icon {
  color: var(--accent-cyan);
  width: 32px;
  height: 32px;
}

.result-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.result-date {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.result-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.detail-item strong {
  font-size: 1rem;
  color: var(--text-white);
}

.impact-text {
  color: var(--accent-cyan) !important;
}

.result-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed rgba(245, 158, 11, 0.3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

/* Info & Cards Grid */
.info-section {
  padding: 4rem 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-active);
}

.info-card.highlight-card {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(18, 30, 61, 0.8), rgba(245, 158, 11, 0.05));
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.info-badge {
  display: inline-block;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.info-badge.highlight {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-list li {
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-list li::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: bold;
}

/* FAQ Accordion */
.faq-section {
  padding: 4rem 1.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ProcessAI CTA Section */
.processai-cta-section {
  padding: 4rem 1.5rem;
}

.cta-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 2.5rem 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-logo-link:hover .footer-logo {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-brand-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calc-form button {
    grid-column: span 1;
  }

  .result-details {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .dates-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .timer-value {
    font-size: 2.4rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand-info {
    align-items: center;
  }

  .calendar-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .nav-tabs {
    width: 100%;
    justify-content: center;
  }
}

/* Calculator Dedicated Page & Promo Styles */
.calculator-hero {
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.calc-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
}

.calc-info-box h3 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.calc-info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-info-box li {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.form-help {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.calculator-promo-section {
  padding: 3rem 1.5rem;
}

.calc-promo-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.calc-promo-content {
  max-width: 650px;
  margin: 0 auto;
}

.calc-promo-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.calc-promo-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}