/* ============================================
   PPRWRK.XYZ - Styles
   Brand: Warm cream, dark teal, coral accent
   Font: Plus Jakarta Sans (brand) + DM Mono (UI) + Work Sans (body)
   Mobile-first, Australian tradies
   ============================================ */

:root {
  --color-bg: #F4E5D1;
  --color-white: #FAFAF7;
  --color-surface: #EBD9C2;
  --color-surface-2: #E2CEB4;
  --color-border: rgba(1, 55, 80, 0.12);
  --color-border-strong: rgba(1, 55, 80, 0.25);
  --color-text: #013750;
  --color-text-muted: rgba(1, 55, 80, 0.7);
  --color-text-dim: rgba(1, 55, 80, 0.45);
  --color-accent: #FB4D3D;
  --color-accent-hover: #e03e2f;
  --color-accent-glow: rgba(251, 77, 61, 0.12);
  --color-dark: #013750;
  --font-brand: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 2.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

/* ---- Layout ---- */

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

section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  section {
    padding: 120px 0;
  }
  .container {
    padding: 0 40px;
  }
}

/* ---- Typography ---- */

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

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.6;
  font-family: var(--font-sans);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border: 2px solid var(--color-text);
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 52px;
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: scale(1.06);
}

.btn-primary:active {
  transform: scale(1);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-bg);
  transform: scale(1.06);
}

.btn-full {
  width: 100%;
}

@media (min-width: 768px) {
  .btn-full {
    width: auto;
  }
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(244, 229, 209, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--color-border-strong);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 40px;
  }
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--color-text);
  text-decoration: none;
}

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

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
  min-height: 40px;
}

/* ---- Hero ---- */

.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 70% -5%, rgba(251, 77, 61, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 110%, rgba(1, 55, 80, 0.06) 0%, transparent 55%);
}

@media (min-width: 768px) {
  .hero {
    padding: 180px 0 120px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-family: var(--font-mono);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 {
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight {
  color: var(--color-accent);
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- Section Alternating Backgrounds ---- */

.bg-white {
  background: var(--color-white);
}

.bg-cream {
  background: var(--color-bg);
}

.bg-dark {
  background: var(--color-dark);
  color: var(--color-bg);
}

.bg-dark .section-label {
  color: var(--color-accent);
}

.bg-dark .section-subtitle {
  color: rgba(244, 229, 209, 0.7);
}

.bg-dark h2 {
  color: var(--color-bg);
}

/* ---- Problem Section ---- */

.problem {
  background: linear-gradient(180deg, var(--color-white) 0%, #f0ece5 100%);
}

.problem-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.problem-card {
  background: #fff;
  border: 1px solid rgba(1, 55, 80, 0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(1, 55, 80, 0.05), 0 1px 4px rgba(1, 55, 80, 0.03);
}

.problem-card .icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.problem-card p {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Solution / Benefits Section ---- */

.benefits-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: #fff;
  border: 1px solid rgba(1, 55, 80, 0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(1, 55, 80, 0.05), 0 1px 4px rgba(1, 55, 80, 0.03);
  transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  border-color: rgba(251, 77, 61, 0.3);
  box-shadow: 0 6px 32px rgba(1, 55, 80, 0.09), 0 2px 8px rgba(1, 55, 80, 0.05);
  transform: translateY(-2px);
}

.benefit-card .icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---- How It Works ---- */

.how-it-works {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.steps {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step {
  background: #fff;
  border: 1px solid rgba(1, 55, 80, 0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 2px 20px rgba(1, 55, 80, 0.05), 0 1px 4px rgba(1, 55, 80, 0.03);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.step h3 {
  margin-bottom: 6px;
}

.step .step-timing {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

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

.step ul {
  list-style: none;
  margin-top: 12px;
}

.step ul li {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.step ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* ---- Text Example / Phone Mockup ---- */

.text-example-section {
  background: linear-gradient(145deg, #012d45 0%, #013750 45%, #014a68 100%);
  color: var(--color-bg);
  overflow: hidden;
}

.text-example-section .section-label {
  color: var(--color-accent);
}

.text-example-section h2 {
  color: var(--color-bg);
}

.text-example-section .section-subtitle {
  color: rgba(244, 229, 209, 0.7);
}

.examples-wrapper {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .examples-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.phone-mockup {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}

.phone-header .avatar {
  width: 36px;
  height: 36px;
  background: var(--color-accent-glow);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-mono);
}

.phone-header .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.phone-header .status {
  font-size: 0.8rem;
  color: var(--color-accent);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  line-height: 1.5;
  white-space: pre-wrap;
}

.msg-out {
  background: var(--color-text);
  color: var(--color-bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg-in {
  background: #f5f0ea;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-label {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.msg-label.right {
  text-align: right;
}

.arrow-divider {
  text-align: center;
  padding: 16px 0;
  font-size: 1.5rem;
  color: var(--color-bg);
  letter-spacing: 4px;
  opacity: 0.5;
}

.google-post-preview {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  color: #1a1a1a;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.google-post-preview .gp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.google-post-preview .gp-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.google-post-preview .gp-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.google-post-preview .gp-time {
  font-size: 0.8rem;
  color: #666;
}

.google-post-preview .gp-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  font-family: var(--font-sans);
  white-space: pre-line;
}

.google-post-preview .gp-photo {
  width: 100%;
  height: 180px;
  background: #f0ece6;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-mono);
}

/* ---- Pricing ---- */

.pricing {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
  text-align: center;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(1, 55, 80, 0.12);
  border-radius: 20px;
  padding: 40px 28px;
  max-width: 560px;
  margin: 40px auto 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(1, 55, 80, 0.1), 0 2px 12px rgba(1, 55, 80, 0.06);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-setup {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-setup .amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: var(--font-mono);
}

.pricing-setup .label {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-family: var(--font-sans);
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.pricing-monthly .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-mono);
}

.pricing-monthly .label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.pricing-divider {
  height: 1px;
  background: var(--color-border-strong);
  margin: 28px 0;
}

.pricing-section-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pricing-features li .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-accent-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.7rem;
  margin-top: 2px;
}

.pricing-cta {
  text-align: center;
  margin-top: 32px;
}

.pricing-cta .btn {
  font-size: 1.1rem;
  padding: 18px 40px;
}

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--color-text-dim);
  font-family: var(--font-sans);
}

.gst-note {
  text-align: center;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  font-family: var(--font-mono);
}

/* ---- FAQ ---- */

.faq {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(1, 55, 80, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 8px rgba(1, 55, 80, 0.04);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  min-height: 52px;
}

.faq-question:hover {
  background: var(--color-white);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--color-text-dim);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  line-height: 1.7;
}

/* ---- CTA Banner ---- */

.cta-banner {
  background: linear-gradient(135deg, #012840 0%, #013750 50%, #01486a 100%);
  color: var(--color-bg);
  text-align: center;
  padding: 80px 0;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 120px 0;
  }
}

.cta-banner h2 {
  margin-bottom: 16px;
  color: var(--color-bg);
}

.cta-banner p {
  font-family: var(--font-sans);
  color: rgba(244, 229, 209, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ---- Footer ---- */

.footer {
  background: linear-gradient(180deg, #012840 0%, #011e30 100%);
  color: var(--color-bg);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  gap: 32px;
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer .nav-logo {
  margin-bottom: 12px;
  display: inline-flex;
  color: rgba(244, 229, 209, 0.9);
}

.footer .nav-logo span {
  color: var(--color-accent);
}

.footer-brand p {
  color: rgba(244, 229, 209, 0.6);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 229, 209, 0.5);
  margin-bottom: 14px;
  font-family: var(--font-mono);
}

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

.footer-links a {
  color: rgba(244, 229, 209, 0.7);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 229, 209, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(244, 229, 209, 0.4);
  font-family: var(--font-mono);
}

.footer-bottom a {
  color: rgba(244, 229, 209, 0.5);
}

.footer-bottom a:hover {
  color: var(--color-bg);
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---- Animations ---- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Loading spinner for checkout ---- */

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Toast notifications ---- */

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 90%;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Scroll to top ---- */

.scroll-top {
  display: none;
}
