/*
 * Site institucional do Clínica 360 (clinica360.tec.br).
 * Estilos derivados do protótipo Open Design (home.html): accent preto,
 * Inter, cartões com borda de 1px e sombras suaves — os mesmos valores de
 * cor/raio/sombra do design system do App da Clínica (--c360-*), aqui
 * redeclarados porque este site é HTML puro, sem build e sem import do
 * pacote do design system.
 */

:root {
  --bg: #ffffff;
  --surface: #f8f9fa;
  --fg: #0a0a0a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #000000;
  --accent-secondary: #18181b;

  --success: #059669;
  --success-bg: #ecfdf5;
  --warning: #d97706;
  --info: #2563eb;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* O header é fixo (72px): sem isto, a âncora para embaixo dele. */
section[id],
main[id] {
  scroll-margin-top: 88px;
}

/* Acessibilidade: foco sempre visível (o site é navegável por teclado). */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}

.skip-link:focus {
  left: 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark img,
.logo-mark svg {
  width: 36px;
  height: 36px;
  display: block;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.15s ease;
}

.nav-link:hover {
  color: var(--fg);
  background: var(--surface);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  padding: 10px 16px;
}

.btn-ghost:hover {
  background: var(--surface);
}

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

.btn-primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--muted);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  margin-top: 64px;
  position: relative;
}

.hero-mockup {
  background: var(--fg);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: var(--shadow-xl), 0 40px 80px -20px rgba(0,0,0,0.2);
  max-width: 1000px;
  margin: 0 auto;
}

.hero-mockup-inner {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.hero-mockup-inner img,
.hero-mockup-inner svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Faixa de prova — fatos verificáveis do produto (sem número inventado) */
.proof-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg);
}

.proof-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

/* Features Section */
.features-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: var(--muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.features-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* Telas do produto.
   São capturas do sistema rodando, com dados de demonstração — a legenda
   diz isso em voz alta (regra 1 do spec: nada de número inventado passando
   por resultado de clínica real). As telas são recortadas com `contain`
   para nunca cortar a barra lateral nem distorcer o print. */
.shots-section {
  padding: 100px 0;
  background: var(--surface);
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.shots-grid--detalhes {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.shot-frame {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  transition: all 0.2s ease;
}

.shot-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.shot:hover .shot-frame {
  border-color: var(--muted);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.shot-caption {
  padding: 0 4px;
}

.shot-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.shot-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.shots-subheader {
  text-align: center;
  margin: 72px 0 32px;
}

.shots-subheader h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.shots-subheader p {
  font-size: 15px;
  color: var(--muted);
}

/* Uma tela sozinha, centralizada (usada na seção de Integrações) */
.shot--centro {
  max-width: 820px;
  margin: 48px auto 0;
  text-align: center;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-content {
  max-width: 480px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  gap: 14px;
}

.benefit-check {
  width: 24px;
  height: 24px;
  background: var(--success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-check svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.benefit-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}

.benefit-text strong {
  font-weight: 600;
}

.benefits-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.benefits-mockup {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.benefits-mockup svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
}

/* Diferenciais (ocupa a posição da prova social do protótipo — ver spec) */
.diff-section {
  padding: 100px 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.diff-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
}

.diff-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.diff-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Pricing */
.pricing-section {
  padding: 100px 0;
  background: var(--surface);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Alternador mensal/anual: as duas modalidades reais do catálogo. */
.pricing-switch {
  display: inline-flex;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
}

.pricing-switch button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pricing-switch button[aria-selected='true'] {
  background: var(--bg);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}

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

.pricing-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
}

.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-users {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
}

.pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-note a {
  color: inherit;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--fg);
  color: white;
  padding: 64px 0 32px;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-mark img,
.footer-logo-mark svg {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-logo-text {
  font-weight: 600;
  font-size: 16px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  /* Folga à direita para o botão flutuante de acesso não cobrir o texto. */
  padding-right: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fg);
}

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

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 16px 0 24px;
}

.mobile-menu[data-open='true'] {
  display: block;
}

.mobile-menu .nav-link,
.mobile-menu .btn {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
}

/* Páginas legais (privacidade e termos) */
.legal-header {
  padding: 120px 0 0;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal p + p {
  margin-top: 12px;
}

.legal ul {
  margin: 12px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal a {
  color: var(--fg);
}

.legal strong {
  color: var(--fg);
}

/* Escopos do OAuth aparecem no texto da integração com o Google Agenda */
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 5px;
  overflow-wrap: anywhere;
}

/* Banner de consentimento (LGPD) */
.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 16px 20px;
}

.consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.consent p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.consent a {
  color: var(--fg);
}

.consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-content {
    max-width: 100%;
    text-align: center;
  }

  .benefits-list {
    max-width: 400px;
    margin: 32px auto 0;
  }

  .benefit-item {
    text-align: left;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .shots-grid--detalhes {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .shots-grid,
  .shots-grid--detalhes {
    grid-template-columns: 1fr;
  }

  .shots-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 36px;
  }

  .pricing-card {
    padding: 28px;
  }

  .pricing-amount {
    font-size: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding-right: 0;
    text-align: center;
  }

  .consent__inner {
    justify-content: stretch;
  }

  .consent__actions .btn {
    flex: 1;
  }
}

/* Quick Access Bar (para quem já é cliente) */
.quick-access {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
}

.quick-access.visible {
  display: block;
}

.quick-access-btn {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.quick-access-btn:hover {
  transform: scale(1.05);
}

.quick-access-btn svg {
  width: 24px;
  height: 24px;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .feature-card:hover,
  .quick-access-btn:hover {
    transform: none;
  }
}
