/* Malkia Web Factory — hand-written CSS port of the React/Tailwind version */

/* ---------- Tokens (HSL, mirrors src/index.css) ---------- */
:root {
  --background: 220 25% 98%;
  --foreground: 217 33% 17%;
  --card: 0 0% 100%;
  --card-foreground: 217 33% 17%;
  --primary: 217 70% 14%;
  --primary-foreground: 220 25% 98%;
  --primary-glow: 217 50% 28%;
  --secondary: 211 47% 44%;
  --secondary-foreground: 0 0% 100%;
  --accent: 42 53% 54%;
  --accent-foreground: 217 70% 14%;
  --accent-soft: 42 60% 92%;
  --muted: 220 20% 94%;
  --muted-foreground: 217 15% 40%;
  --border: 220 16% 88%;
  --radius: 0.625rem;

  --gradient-hero: linear-gradient(135deg, hsl(217 70% 14%) 0%, hsl(217 60% 20%) 60%, hsl(211 47% 30%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(42 53% 54%), hsl(38 60% 62%));
  --gradient-subtle: linear-gradient(180deg, hsl(220 25% 98%), hsl(220 20% 95%));

  --shadow-elegant: 0 20px 50px -20px hsl(217 70% 14% / 0.25);
  --shadow-card: 0 4px 20px -8px hsl(217 70% 14% / 0.12);
  --shadow-gold: 0 10px 30px -10px hsl(42 53% 54% / 0.45);

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Fraunces', 'Inter', serif; letter-spacing: -0.02em; line-height: 1.1; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 768px; }
.container-md { max-width: 896px; }
.container-lg { max-width: 1024px; }
.container-xl { max-width: 1152px; }

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

.bg-hero { background: var(--gradient-hero); }
.bg-gold { background: var(--gradient-gold); }
.bg-subtle { background: var(--gradient-subtle); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-card-soft { box-shadow: var(--shadow-card); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.transition-smooth { transition: var(--transition-smooth); }

.grid-pattern {
  background-image:
    linear-gradient(hsl(var(--accent) / 0.08) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--accent) / 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
  white-space: nowrap;
  border: 1px solid transparent;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.75rem 1.25rem; font-size: 0.95rem; }
.btn-xl { padding: 0.95rem 1.6rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-navy {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-navy:hover { background: hsl(var(--primary-glow)); }

.btn-hero {
  background: var(--gradient-gold);
  color: hsl(var(--accent-foreground));
  box-shadow: var(--shadow-gold);
}
.btn-hero:hover { transform: translateY(-2px) scale(1.02); }

.btn-outline {
  background: transparent;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}
.btn-outline:hover { background: hsl(var(--muted)); }

.btn-outline-light {
  background: transparent;
  border-color: hsl(var(--primary-foreground) / 0.3);
  color: hsl(var(--primary-foreground));
}
.btn-outline-light:hover { background: hsl(var(--primary-foreground) / 0.1); }

.btn .icon { width: 1rem; height: 1rem; }
.btn-xl .icon, .btn-lg .icon { width: 1.15rem; height: 1.15rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  z-index: 40;
  transition: var(--transition-smooth);
  background: transparent;
}
.site-header.scrolled {
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--border));
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
}
.brand-tile {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.375rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  display: grid; place-items: center;
  overflow: hidden;
}
.brand-tile img { width: 2.25rem; height: 2.25rem; object-fit: contain; }
.brand .accent { color: hsl(var(--accent)); margin-left: 0.25rem; }

.primary-nav { display: none; gap: 2rem; font-size: 0.875rem; font-weight: 500; color: hsl(var(--muted-foreground)); }
.primary-nav a { transition: var(--transition-smooth); }
.primary-nav a:hover { color: hsl(var(--primary)); }
@media (min-width: 768px) { .primary-nav { display: inline-flex; } }

.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

/* ---------- Sections ---------- */
section { padding: 6rem 0; }
@media (min-width: 768px) { section { padding: 8rem 0; } }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--accent));
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-wrap: balance;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-lede {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  color: hsl(var(--primary-foreground));
}
@media (min-width: 768px) { .hero { padding: 10rem 0 8rem; } }
.hero .blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
}
.hero .blob.a { top: -10rem; right: -10rem; width: 600px; height: 600px; background: hsl(var(--accent) / 0.10); }
.hero .blob.b { bottom: -10rem; left: -10rem; width: 500px; height: 500px; background: hsl(var(--secondary) / 0.20); }
.hero .grid-pattern { position: absolute; inset: 0; opacity: 0.3; }
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero h1 .accent { color: hsl(var(--accent)); }
.hero p.lede {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.75);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-checks {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
}
.hero-checks div { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-checks .icon { color: hsl(var(--accent)); width: 1rem; height: 1rem; }
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.hero-visual .glow {
  position: absolute; inset: -1rem;
  background: hsl(var(--accent) / 0.20);
  filter: blur(40px);
  border-radius: 9999px;
  pointer-events: none;
}
.hero-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: hsl(var(--background));
  padding: 2rem;
  box-sizing: border-box;
  object-fit: contain;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 1024px) { .hero-visual img { animation: float 4s ease-in-out infinite; } }

/* ---------- What we do (cards) ---------- */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.feature-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}
.feature-card .icon-tile {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.625rem;
  background: hsl(var(--accent-soft));
  color: hsl(var(--accent));
  display: grid; place-items: center;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}
.feature-card:hover .icon-tile { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }

.section-head { max-width: 42rem; margin-bottom: 4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  transition: var(--transition-smooth);
}
.process-card:hover { border-color: hsl(var(--accent) / 0.4); }
.process-card .num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--accent) / 0.2);
}
.process-card .icon-tile {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.process-card h3 { font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex; flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-elegant); }
.price-card.featured {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--accent));
  box-shadow: var(--shadow-elegant);
  transform: scale(1.02);
}
.price-card .badge {
  position: absolute; top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.price-card .tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: hsl(var(--accent)); margin-bottom: 0.5rem; }
.price-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; color: hsl(var(--primary)); }
.price-card.featured h3 { color: hsl(var(--primary-foreground)); }
.price-card .price { font-family: 'Fraunces', serif; font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; color: hsl(var(--primary)); }
.price-card.featured .price { color: hsl(var(--accent)); }
.price-card ul { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; }
.price-card li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.price-card.featured li { color: hsl(var(--primary-foreground) / 0.85); }
.price-card li .icon { width: 1rem; height: 1rem; margin-top: 0.15rem; flex: none; color: hsl(var(--accent)); }

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}
.portfolio-card:hover { box-shadow: var(--shadow-elegant); transform: translateY(-4px); }
.portfolio-card .thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}
.portfolio-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.portfolio-card .body { padding: 1.5rem; }
.portfolio-card h3 { font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.portfolio-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.portfolio-card .pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 600;
  color: hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
  padding: 0.4rem 0.75rem;
  border-radius: 0.375rem;
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.portfolio-card:hover .pill { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  padding: 0 1.25rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: hsl(var(--primary));
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 0.65rem; height: 0.65rem;
  border-right: 2px solid hsl(var(--muted-foreground));
  border-bottom: 2px solid hsl(var(--muted-foreground));
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: none;
  margin-right: 0.25rem;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .answer {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  padding-bottom: 1.25rem;
  animation: faq-open 0.25s ease-out;
}

/* ---------- Final CTA ---------- */
.final-cta { position: relative; overflow: hidden; color: hsl(var(--primary-foreground)); }
.final-cta .blob { position: absolute; top: -10rem; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; border-radius: 9999px; background: hsl(var(--accent) / 0.10); filter: blur(80px); pointer-events: none; }
.final-cta .grid-pattern { position: absolute; inset: 0; opacity: 0.3; }
.final-cta .container { position: relative; max-width: 768px; text-align: center; }
.final-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
@media (min-width: 768px) { .final-cta h2 { font-size: 3rem; } }
.final-cta h2 .accent { color: hsl(var(--accent)); }
.final-cta p {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.75);
  margin: 0 auto 2.5rem;
  max-width: 36rem;
}

/* ---------- About ---------- */
.about { text-align: center; }
.about .container { max-width: 56rem; }
.about-body { display: flex; flex-direction: column; gap: 1.5rem; font-size: 1.125rem; color: hsl(var(--muted-foreground)); line-height: 1.75; }

/* ---------- Footer ---------- */
.site-footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-family: 'Fraunces', serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-brand .brand-tile { background: hsl(var(--background)); border: none; }
.footer-blurb { font-size: 0.875rem; color: hsl(var(--primary-foreground) / 0.65); max-width: 22rem; line-height: 1.7; }
.footer-contact { font-size: 0.875rem; }
.footer-contact .label { font-weight: 600; color: hsl(var(--accent)); margin-bottom: 0.75rem; }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: hsl(var(--primary-foreground) / 0.75);
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}
.footer-contact a:hover { color: hsl(var(--accent)); }
.footer-contact a .icon { width: 1rem; height: 1rem; }
.footer-cta { text-align: left; }
@media (min-width: 768px) { .footer-cta { text-align: right; } }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
  font-size: 0.75rem; color: hsl(var(--primary-foreground) / 0.5);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 30;
  background: var(--gradient-gold);
  color: hsl(var(--accent-foreground));
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.floating-cta:hover { transform: scale(1.05); }
.floating-cta .label-full { display: none; }
@media (min-width: 640px) {
  .floating-cta .label-full { display: inline; }
  .floating-cta .label-short { display: none; }
}

/* ---------- Modal (contact) ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: hsl(var(--primary) / 0.6);
  backdrop-filter: blur(4px);
  z-index: 60;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  animation: fade-in 0.2s ease-out;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  border-radius: 0.75rem;
  width: 100%;
  max-width: 32rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-elegant);
  animation: scale-in 0.2s ease-out;
}
.modal h2 { font-size: 1.5rem; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.modal .desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.25rem; }
.modal .close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem;
  border-radius: 0.375rem;
  display: grid; place-items: center;
  color: hsl(var(--muted-foreground));
}
.modal .close:hover { background: hsl(var(--muted)); color: hsl(var(--foreground)); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }

/* Toast */
.toast {
  position: fixed;
  right: 1.25rem; top: 1.25rem;
  z-index: 80;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-left: 4px solid hsl(var(--accent));
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-elegant);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  max-width: 22rem;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { border-left-color: hsl(0 70% 45%); }

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.animate-fade-up { animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-fade-in { animation: fade-in 0.6s ease-out both; }

/* Utility spacing */
.mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; } .hidden { display: none; }
