/* Currevo — Dark Luxury Fintech Palette */
:root {
  --ink: #0D1117;
  --navy-ink: #1C2433;
  --gold: #C9983A;
  --gold-light: #E8C87A;
  --slate: #8B9BB4;
  --off-white: #F7F4EE;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--slate);
  line-height: 1.6;
  font-weight: 400;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--off-white);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 500;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

/* ─── Site Header (Fixed Nav) ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201, 152, 58, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--off-white);
}

.nav-cta {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(201, 152, 58, 0.45);
  padding: 0.45rem 1.1rem;
  border-radius: 5px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover {
  color: var(--gold-light);
  background: rgba(201, 152, 58, 0.1);
  border-color: var(--gold);
}

.logo-wrap {
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-tagline {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subheading {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 500px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ─── FX Calculator ─── */
.fx-calculator {
  background: var(--navy-ink);
  border: 1px solid rgba(201, 152, 58, 0.3);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fx-calc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fx-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 7px #4ade80;
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.fx-calc-title {
  font-size: 0.78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fx-field {
  margin-bottom: 0.5rem;
}

.fx-field-label {
  display: block;
  font-size: 0.72rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.fx-field-row {
  display: flex;
  gap: 0.5rem;
}

.fx-amount-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 155, 180, 0.18);
  border-radius: 7px;
  padding: 0.65rem 0.9rem;
  color: var(--off-white);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.fx-amount-input:focus {
  border-color: rgba(201, 152, 58, 0.55);
}

.fx-amount-input::-webkit-inner-spin-button,
.fx-amount-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.fx-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 155, 180, 0.18);
  border-radius: 7px;
  padding: 0.65rem 0.5rem;
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  outline: none;
  cursor: pointer;
  min-width: 82px;
  transition: border-color 0.2s;
}

.fx-select:focus {
  border-color: rgba(201, 152, 58, 0.55);
}

.fx-result-value {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 155, 180, 0.1);
  border-radius: 7px;
  padding: 0.65rem 0.9rem;
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fx-swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.6rem auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 152, 58, 0.08);
  border: 1px solid rgba(201, 152, 58, 0.28);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.35s;
}

.fx-swap-btn:hover {
  background: rgba(201, 152, 58, 0.18);
  transform: rotate(180deg);
}

.fx-comparison {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(139, 155, 180, 0.1);
}

.fx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.88rem;
}

.fx-row-label {
  color: var(--slate);
}

.fx-row-value--good {
  color: var(--gold-light);
  font-weight: 600;
}

.fx-row-value--bad {
  color: var(--slate);
  text-decoration: line-through;
  opacity: 0.65;
}

.fx-savings-row {
  margin-top: 0.85rem;
  padding: 0.6rem 0.9rem;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--slate);
}

.fx-savings-val {
  color: #4ade80;
  font-weight: 600;
}

.fx-disclaimer {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--slate);
  opacity: 0.55;
  text-align: center;
}

/* ─── CTAs ─── */
.cta-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 0.9rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  width: fit-content;
}

.cta-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(201, 152, 58, 0.35);
  transform: translateY(-2px);
}

.cta-primary:active {
  transform: scale(0.97) translateY(0);
}

.cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cta-secondary:hover {
  background: rgba(201, 152, 58, 0.1);
  color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(201, 152, 58, 0.15);
  transform: translateY(-2px);
}

.cta-secondary:active {
  transform: scale(0.97);
}

/* ─── Trust signals ─── */
.trust-signals {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--slate);
  font-size: 0.87rem;
}

.trust-divider {
  color: var(--gold);
  font-size: 0.5rem;
}

/* ─── Scroll Reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.modal-visible {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--navy-ink);
  border: 1px solid rgba(201, 152, 58, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--slate);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--off-white);
}

.modal-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.modal-content p strong {
  color: var(--gold-light);
}

.modal-sub {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--navy-ink);
  border-top: 1px solid rgba(201, 152, 58, 0.2);
  border-bottom: 1px solid rgba(201, 152, 58, 0.2);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--slate);
}

/* ─── Section helpers ─── */
.section-intro {
  text-align: center;
  color: var(--slate);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.products .section-intro,
.how-it-works .section-intro,
.trust .section-intro {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.how-intro,
.trust-intro {
  text-align: center;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.pricing-sub {
  text-align: center;
  color: var(--slate);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.closing-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ─── Why Currevo ─── */
.why-currevo {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.why-currevo h2 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

.why-content p {
  margin-bottom: 1.5rem;
  color: var(--slate);
  font-size: 1.05rem;
}

.why-content p:last-child {
  margin-bottom: 0;
}

/* ─── Product Cards ─── */
.products {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--navy-ink);
  border: 1px solid rgba(201, 152, 58, 0.18);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  border-color: rgba(201, 152, 58, 0.6);
  box-shadow: 0 8px 32px rgba(201, 152, 58, 0.1), 0 0 0 1px rgba(201, 152, 58, 0.06);
  transform: translateY(-4px);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(201, 152, 58, 0.1);
  color: var(--gold);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.product-card h3 {
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

/* ─── How it works ─── */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--navy-ink);
  border-top: 1px solid rgba(201, 152, 58, 0.15);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--slate);
  font-size: 0.9rem;
}

.step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  padding-top: 1rem;
  opacity: 0.45;
}

/* ─── Pricing Table ─── */
.pricing {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-intro {
  text-align: center;
  color: var(--slate);
  margin-bottom: 2rem;
}

.pricing-table-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(201, 152, 58, 0.25);
  border-radius: 10px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(139, 155, 180, 0.1);
}

.pricing-table th {
  background: var(--navy-ink);
  color: var(--off-white);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.pricing-table th:nth-child(2) {
  color: var(--gold);
}

.pricing-table td {
  color: var(--slate);
}

.pricing-table tbody tr {
  transition: background 0.15s;
}

.pricing-table tbody tr:hover {
  background: rgba(201, 152, 58, 0.04);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td:nth-child(2) {
  color: var(--gold-light);
  font-weight: 500;
}

/* ─── Trust Section ─── */
.trust {
  padding: 5rem 2rem;
  background: var(--navy-ink);
  border-top: 1px solid rgba(201, 152, 58, 0.15);
}

.trust h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.trust-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(201, 152, 58, 0.1);
  border-radius: 10px;
  transition: border-color 0.25s, transform 0.25s;
}

.trust-card:hover {
  border-color: rgba(201, 152, 58, 0.3);
  transform: translateY(-3px);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 152, 58, 0.1);
  color: var(--gold);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.trust-card h3 {
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

/* ─── Closing CTA ─── */
.closing-cta {
  padding: 5rem 2rem;
  text-align: center;
}

.closing-cta h2 {
  margin-bottom: 1rem;
}

.closing-cta p {
  color: var(--slate);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ─── Footer ─── */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(139, 155, 180, 0.15);
}

.footer p {
  font-size: 0.85rem;
  color: var(--slate);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

/* ─── Hamburger Button ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 200;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Nav Overlay ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  padding: 0.25rem 1rem;
}

.mobile-nav-link:hover {
  color: var(--gold-light);
}

.mobile-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gold);
  border: 1px solid rgba(201, 152, 58, 0.45);
  padding: 0.75rem 2.5rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  letter-spacing: 0;
  font-weight: 500;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-widget {
    order: -1;
  }
}

@media (max-width: 768px) {
  .step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .nav {
    gap: 0;
    padding: 0.75rem 1.25rem;
  }

  .logo-img {
    height: 48px;
  }

  /* Hero: show content first, calculator below */
  .hero-widget {
    order: 1;
    width: 100%;
  }

  .hero-content {
    order: 0;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
  }

  /* CTAs full-width on mobile */
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
    display: block;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-subheading {
    font-size: 1rem;
    max-width: 100%;
  }

  /* Stats bar */
  .stats-bar {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  /* Sections padding */
  .why-currevo,
  .products,
  .how-it-works,
  .pricing,
  .trust,
  .closing-cta {
    padding: 3.5rem 1.25rem;
  }

  /* Product grid single column */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Trust grid single column */
  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* Steps stack vertically */
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    min-width: unset;
    width: 100%;
  }

  /* FX calculator */
  .fx-calculator {
    padding: 1.25rem;
  }

  /* Pricing table more compact */
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Closing CTA */
  .closing-cta p {
    max-width: 100%;
  }

  /* Trust signals */
  .trust-signals {
    gap: 0.5rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.2rem;
  }

  .mobile-nav-link {
    font-size: 2.25rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.6rem 0.65rem;
    font-size: 0.78rem;
  }
}
