/* ============================================
   Cravewatch — Global Styles
   ============================================ */

:root {
  /* Colors — match the app's design system */
  --bg-base: #0F1320;
  --bg-elevated: #161B2C;
  --bg-card: #1A2036;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.48);

  --accent: #FF3B5C;
  --accent-hover: #FF5470;
  --accent-soft: rgba(255, 59, 92, 0.12);
  --accent-glow: rgba(255, 59, 92, 0.32);

  --success: #34D399;
  --warning: #FBBF24;

  /* Spacing */
  --container: 1200px;
  --gutter: 24px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

img, svg {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ============================================
   Layout helpers
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

h3 {
  font-size: 1.25rem;
}

.accent {
  color: var(--accent);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 16px auto 64px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  opacity: 1;
}

/* ============================================
   Header / Navigation
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 19, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text > span {
  color: var(--accent);
}

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

.site-footer .logo-img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text-primary);
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s ease;
}

.lang-toggle:hover {
  border-color: var(--border-strong);
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

.lang-toggle .chevron {
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-toggle .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 100;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.lang-dropdown a:hover {
  background: var(--bg-elevated);
  opacity: 1;
}

.lang-dropdown a.current {
  background: var(--bg-elevated);
}

.lang-dropdown .lang-code {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-base);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.lang-dropdown a.current .lang-code {
  background: var(--accent-soft);
  color: var(--accent);
}

.lang-dropdown a.current::after {
  content: '✓';
  color: var(--accent);
  margin-left: 8px;
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    gap: 0;
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .nav-cta .btn {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.4));
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-image {
    max-width: 480px;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Split-section image (e.g. Gamified Recovery section) */
.split-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.4));
}

/* Phone mockup — fallback if needed elsewhere */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 40px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: black;
  border-radius: 18px;
}

@media (max-width: 880px) {
  .phone-mockup {
    transform: scale(0.85);
  }
}

/* ============================================
   Card Grids (Pain Points / Features)
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   Gamified Section
   ============================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-text h2 {
  text-align: left;
  margin-bottom: 16px;
}

.split-text p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.0625rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  min-width: 130px;
}

.stat-label h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 880px) {
  .split-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .split-text h2 {
    text-align: center;
  }
  .stat-row {
    justify-content: center;
    text-align: left;
  }
}

/* ============================================
   Pricing
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 0 24px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: var(--text-primary);
  opacity: 1;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Content / Legal Pages
   ============================================ */

.content-page {
  padding: 80px 0;
}

.content-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.content-header {
  margin-bottom: 48px;
}

.content-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.content-header .subtitle {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.content-wrap h2 {
  font-size: 1.5rem;
  text-align: left;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.content-wrap h2:first-child {
  margin-top: 0;
}

.content-wrap h3 {
  font-size: 1.125rem;
  margin: 32px 0 12px;
}

.content-wrap p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-wrap ul, .content-wrap ol {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 16px;
  padding-left: 24px;
}

.content-wrap li {
  margin-bottom: 8px;
}

.content-wrap a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-wrap strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-wrap hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ============================================
   About Page — Stats Bar
   ============================================ */

.stats-bar {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-item-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ============================================
   About Page — Value Cards
   ============================================ */

.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.value-card {
  background: linear-gradient(135deg, var(--accent) 0%, #C92E48 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  color: white;
}

.value-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.value-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .value-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   About Page — Founder Block
   ============================================ */

.founder-block {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
}

.founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.founder-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.founder-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .founder-block {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .founder-photo {
    margin: 0 auto;
  }
}

/* ============================================
   About Page — Mission Statement Block
   ============================================ */

.mission-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission-block h2 {
  margin-bottom: 24px;
}

.mission-block p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ============================================
   Final CTA Block (used on About / Contact)
   ============================================ */

.final-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.final-cta p {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 520px;
  margin: 0 auto 32px;
}

.final-cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Contact Page — Action Buttons
   ============================================ */

.contact-page {
  padding: 96px 0;
  text-align: center;
}

.contact-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.contact-page > .container > p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.contact-actions {
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  width: 100%;
}

.contact-btn-email {
  background: white;
  color: #0F1320;
}

.contact-btn-email:hover {
  background: #f0f0f0;
  opacity: 1;
  transform: translateY(-1px);
}

.contact-btn-cancel {
  background: #16A34A;
  color: white;
}

.contact-btn-cancel:hover {
  background: #15803D;
  opacity: 1;
  transform: translateY(-1px);
}

.contact-btn-refund {
  background: var(--accent);
  color: white;
}

.contact-btn-refund:hover {
  background: var(--accent-hover);
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================================
   Utilities
   ============================================ */

.text-center {
  text-align: center;
}

.mt-large {
  margin-top: 80px;
}
