/* ============================================
   SOLVAYA — Concept E: The Roast
   Personality-driven marketing site styles
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Inter:wght@400;500;600;700&family=Caveat:wght@400;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Light mode (warm cream) */
  --color-bg: #FFFBF5;
  --color-surface: #FFF0E6;
  --color-surface-alt: #FFF5ED;
  --color-text: #2D1B35;
  --color-text-muted: #6B5A75;
  --color-text-light: #8A7A94;

  --color-primary: #FF6B6B;
  --color-primary-hover: #FF5252;
  --color-secondary: #FFD93D;
  --color-secondary-hover: #FFC107;
  --color-success: #4ECDC4;
  --color-accent-purple: #9B59B6;

  --color-border: #E8D5C4;
  --color-border-light: #F0E0D0;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 27, 53, 0.08);
  --shadow-md: 0 4px 12px rgba(45, 27, 53, 0.1);
  --shadow-lg: 0 8px 30px rgba(45, 27, 53, 0.12);
  --shadow-sticky: 0 12px 40px rgba(45, 27, 53, 0.15);

  /* Fonts */
  --font-display: 'Bangers', cursive;
  --font-body: 'Inter', sans-serif;
  --font-handwritten: 'Caveat', cursive;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1120px;
}

/* ---------- Dark Mode ---------- */
.dark {
  --color-bg: #1A0E1F;
  --color-surface: #2D1B35;
  --color-surface-alt: #3A2545;
  --color-text: #F8F5F0;
  --color-text-muted: #B8B0C8;
  --color-text-light: #9A8AAA;

  --color-border: #4A3555;
  --color-border-light: #3D2A48;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-sticky: 0 12px 40px rgba(0, 0, 0, 0.6);
}

/* ---------- Base Reset & Typography ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Display Font ---------- */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.font-handwritten {
  font-family: var(--font-handwritten);
  font-weight: 600;
}

/* ---------- Section Spacing ---------- */
.section {
  padding: var(--section-padding) 0;
}

/* ---------- Highlighter Effect ---------- */
.highlight {
  background: linear-gradient(180deg, transparent 50%, var(--secondary, #FFD93D) 50%);
  padding: 0 0.15em;
  display: inline;
}

.highlight-pink {
  background: linear-gradient(180deg, transparent 50%, var(--color-primary) 50%);
  color: #fff;
  padding: 0 0.15em;
  display: inline;
}

/* ---------- Hand-drawn Borders ---------- */
.border-sketch {
  border: 2.5px solid var(--color-text);
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

.border-sketch-light {
  border: 2px solid var(--color-border);
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
}

.border-rough {
  border: 2px solid var(--color-border);
  border-radius: 30px 4px 30px 4px;
}

/* ---------- Speech Bubble ---------- */
.speech-bubble {
  position: relative;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 18px;
  padding: 1.5rem 2rem;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid var(--color-surface);
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.08));
}

.speech-bubble-right::after {
  left: auto;
  right: 30px;
}

.speech-bubble-down::after {
  bottom: auto;
  top: -14px;
  border-top: none;
  border-bottom: 14px solid var(--color-surface);
}

/* ---------- Sticky Note ---------- */
.sticky-note {
  background: var(--color-secondary);
  color: var(--color-text);
  padding: 1.5rem 2rem;
  transform: rotate(-1deg);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15);
  position: relative;
}

.sticky-note::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.sticky-note-alt {
  transform: rotate(1.5deg);
}

.sticky-note-pink {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Torn Paper Edge ---------- */
.torn-edge {
  position: relative;
}

.torn-edge::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--color-bg);
  clip-path: polygon(
    0% 60%, 3% 50%, 6% 65%, 9% 45%, 12% 60%, 15% 40%, 18% 55%, 21% 35%,
    24% 50%, 27% 30%, 30% 45%, 33% 25%, 36% 40%, 39% 20%, 42% 35%, 45% 15%,
    48% 30%, 51% 10%, 54% 25%, 57% 5%, 60% 20%, 63% 0%, 66% 15%, 69% 0%,
    72% 10%, 75% 0%, 78% 8%, 81% 0%, 84% 5%, 87% 0%, 90% 10%, 93% 0%,
    96% 8%, 100% 0%, 100% 100%, 0% 100%
  );
}

/* ---------- Doodle Underline ---------- */
.doodle-underline {
  position: relative;
  display: inline-block;
}

.doodle-underline::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -6px;
  height: 8px;
  background: var(--color-primary);
  opacity: 0.6;
  border-radius: 4px;
  transform: rotate(-0.5deg);
}

/* ---------- Doodle Circle ---------- */
.doodle-circle {
  position: relative;
  display: inline-block;
}

.doodle-circle::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: -8px;
  bottom: -8px;
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.45);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text);
  box-shadow: 0 4px 14px rgba(255, 217, 61, 0.3);
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 14px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 99;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-light);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  padding-top: calc(64px + var(--section-padding));
  padding-bottom: var(--section-padding);
  text-align: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-family: var(--font-handwritten);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.hero-microcopy {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  font-style: italic;
}

/* ---------- Bar Chart ---------- */
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem;
  max-width: 500px;
  margin: 3rem auto;
  height: 220px;
}

.bar-chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.bar {
  width: 80px;
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: height 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar-airbnb {
  background: linear-gradient(180deg, var(--color-primary) 0%, #e74c3c 100%);
  height: 200px;
}

.bar-you {
  background: linear-gradient(180deg, var(--color-success) 0%, #2ecc71 100%);
  height: 18px;
}

.bar-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

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

/* ---------- Roast Cards ---------- */
.roast-card {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.roast-card:nth-child(1) {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  transform: rotate(-0.5deg);
}

.roast-card:nth-child(2) {
  border-radius: 30px 4px 30px 4px;
  transform: rotate(0.3deg);
}

.roast-card:nth-child(3) {
  border-radius: 15px 225px 15px 255px/255px 15px 225px 15px;
  transform: rotate(-0.8deg);
}

.roast-card:nth-child(4) {
  border-radius: 4px 30px 4px 30px;
  transform: rotate(0.5deg);
}

.roast-card:nth-child(5) {
  border-radius: 225px 15px 255px 15px/15px 255px 15px 225px;
  transform: rotate(-0.3deg);
}

.roast-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.roast-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.roast-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- Testimonial Cards ---------- */
.testimonial {
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1rem;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 1rem;
  color: var(--color-text-muted);
}

/* ---------- Feature Accordion ---------- */
.accordion-item {
  border: 2px solid var(--color-border);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color 0.2s;
}

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

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  gap: 1rem;
}

.accordion-trigger:hover {
  color: var(--color-primary);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-content-inner {
  padding: 0 1.75rem 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.accordion-content-inner .answer {
  background: var(--color-surface-alt);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-top: 0.75rem;
  border-left: 3px solid var(--color-success);
}

/* ---------- Pricing Card ---------- */
.pricing-card {
  background: var(--color-surface);
  border: 3px solid var(--color-primary);
  border-radius: 20px;
  padding: 3rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px dashed var(--color-primary);
  border-radius: 22px;
  opacity: 0.3;
  pointer-events: none;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}

.pricing-period {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 12px;
  height: 12px;
  background: var(--color-success);
  border-radius: 3px;
  transform: rotate(45deg);
}

/* ---------- Toggle Switch ---------- */
.toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

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

.toggle-label.active {
  color: var(--color-text);
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--color-border);
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  border: none;
  padding: 0;
}

.toggle-switch.active {
  background: var(--color-primary);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active::after {
  transform: translateX(26px);
}

/* ---------- FAQ Item ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
  padding: 1.25rem 0;
}

.faq-item dt {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text);
}

.faq-item dt:hover {
  color: var(--color-primary);
}

.faq-item dd {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--color-border);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5A75' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ---------- Success State ---------- */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  padding: 3rem 0 2rem;
  margin-top: var(--section-padding);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-light);
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ---------- Dark Mode Toggle Button ---------- */
.dark-toggle {
  background: none;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ---------- Scroll Animations ---------- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-bounce-in {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-bounce-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }

/* ---------- Squiggly Divider ---------- */
.squiggly-divider {
  text-align: center;
  padding: 2rem 0;
  opacity: 0.4;
}

/* ---------- Tooltip / Annotation ---------- */
.annotation {
  font-family: var(--font-handwritten);
  font-size: 1.1rem;
  color: var(--color-primary);
  transform: rotate(-3deg);
  display: inline-block;
}

/* ---------- Comparison Table ---------- */
.comparison-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.comparison-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.comparison-icon.check {
  background: var(--color-success);
  color: #fff;
}

.comparison-icon.cross {
  background: var(--color-primary);
  color: #fff;
}

/* ---------- Pulse animation for CTA ---------- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(255, 107, 107, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(255, 107, 107, 0.55); }
}

.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ---------- 404 Page ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .bar-chart {
    gap: 1.5rem;
    height: 160px;
  }

  .bar {
    width: 60px;
  }

  .bar-airbnb {
    height: 140px;
  }

  .roast-card {
    padding: 1.5rem 1.75rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial {
    padding: 1.25rem 1.5rem;
  }

  .accordion-trigger {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .accordion-content-inner {
    padding: 0 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .bar-chart {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .bar {
    width: 100%;
    max-width: 200px;
  }

  .bar-airbnb {
    height: 120px;
  }

  .bar-you {
    height: 14px;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
  }
}
