/* ==========================================================================
   OWLert - Liquid Glass Design System Stylesheet
   ========================================================================== */

/* Variables & Design Tokens */
:root {
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Color Palette */
  --color-brand-50: #f0f9ff;
  --color-brand-100: #e0f2fe;
  --color-brand-500: #0ea5e9;
  --color-brand-600: #0284c7;
  --color-brand-700: #0369a1;
  
  --color-violet-400: #a78bfa;
  --color-violet-500: #8b5cf6;
  --color-violet-600: #7c3aed;
  
  --color-fuchsia-400: #e879f9;
  --color-fuchsia-500: #d946ef;
  
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;

  /* Custom Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-violet-500) 100%);
  --gradient-text: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-slate-700) 50%, var(--color-slate-900) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(14, 165, 233, 0.4) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(217, 70, 239, 0.2) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-slate-50);
  color: var(--color-slate-900);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background Mesh & Orbs */
.background-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -10;
}

.liquid-mesh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 15%, rgba(14, 165, 233, 0.12) 0px, transparent 40%),
    radial-gradient(at 80% 5%, rgba(139, 92, 246, 0.08) 0px, transparent 40%),
    radial-gradient(at 0% 50%, rgba(217, 70, 239, 0.08) 0px, transparent 40%),
    radial-gradient(at 80% 60%, rgba(14, 165, 233, 0.06) 0px, transparent 40%),
    radial-gradient(at 10% 90%, rgba(139, 92, 246, 0.1) 0px, transparent 40%),
    linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.liquid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: liquid-morph 10s ease-in-out infinite, liquid-float 8s ease-in-out infinite;
}

.liquid-orb-brand {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  top: -80px;
  right: -80px;
  animation-delay: 0s;
}

.liquid-orb-violet {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  top: 45%;
  left: -100px;
  animation-delay: 2s;
}

.liquid-orb-fuchsia {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #d946ef 0%, #e879f9 100%);
  bottom: 10%;
  right: 5%;
  animation-delay: 4s;
}

/* Glassmorphism Styles */
.liquid-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
}

.liquid-glass-deep {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border-radius: 2.5rem;
}

.liquid-glow {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.liquid-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-glow);
  border-radius: inherit;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.liquid-glow:hover {
  transform: translateY(-4px);
}

.liquid-glow:hover::after {
  opacity: 1;
}

.liquid-shimmer {
  position: relative;
  overflow: hidden;
}

.liquid-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.4) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Animations */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes liquid-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(0.3deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-0.3deg); }
}

@keyframes liquid-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%; }
  75% { border-radius: 40% 50% 60% 50% / 60% 50% 40% 60%; }
}

@keyframes laser-sweep {
  0%, 100% { top: 0%; opacity: 0.8; }
  50% { top: 100%; opacity: 1; }
}

@keyframes rotation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

/* Layout Utilities & Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 1.5rem;
  z-index: 100;
  margin-bottom: 2rem;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-slate-900);
  letter-spacing: -0.5px;
}

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

.nav-link {
  text-decoration: none;
  color: var(--color-slate-600);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-brand-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-brand-600) 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
  color: var(--color-slate-700);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-slate-900);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-slate-500);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-brand-500);
  animation: pulse-soft 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: var(--color-slate-900);
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-brand-500) 0%, var(--color-violet-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-slate-500);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
}

/* Interactive Phone Mockup & Scanner */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scanner-orb-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  filter: blur(20px);
}

.hologram-container {
  position: relative;
  width: 340px;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: liquid-float 6s ease-in-out infinite;
}

/* Tech rings spinning */
.tech-ring-outer {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1.5px dashed rgba(14, 165, 233, 0.25);
  border-radius: 50%;
  animation: rotation 25s linear infinite;
}

.tech-ring-inner {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-top-color: rgba(139, 92, 246, 0.6);
  border-bottom-color: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  animation: rotation 12s linear infinite reverse;
}

/* Scanning Box */
.scan-card {
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.scan-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 100%);
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.book-mockup {
  position: relative;
  width: 110px;
  height: 165px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 0.75rem;
  overflow: hidden;
  z-index: 2;
  transition: transform 0.3s ease;
}

.book-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
}

.book-logo {
  width: 32px;
  height: 32px;
  opacity: 0.85;
}

.book-title-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  width: 80%;
  margin-bottom: 0.35rem;
}

.book-author-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  width: 50%;
}

/* Laser sweep line */
.scan-laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #22d3ee;
  box-shadow: 
    0 0 12px #22d3ee,
    0 0 4px #22d3ee;
  z-index: 3;
  animation: laser-sweep 4s ease-in-out infinite;
}

/* Scanning Overlay Ticker */
.scanner-ticker-panel {
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  max-width: 260px;
}

.spinner-indicator {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-top-color: var(--color-brand-500);
  border-radius: 50%;
  animation: rotation 1s linear infinite;
}

.ticker-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-slate-600);
}

/* Features Grid */
.features-section {
  padding: 6rem 0;
}

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

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-brand-600);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-slate-800);
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  text-align: left;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--color-brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card:nth-child(2) .feature-icon-box {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--color-violet-500);
}

.feature-card:nth-child(3) .feature-icon-box {
  background: rgba(217, 70, 239, 0.08);
  border-color: rgba(217, 70, 239, 0.2);
  color: var(--color-fuchsia-500);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-slate-800);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--color-slate-500);
  line-height: 1.6;
}

/* Category Showcase */
.categories-section {
  padding: 6rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.category-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--color-slate-200);
  color: var(--color-slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-badge {
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card:hover .category-icon {
  border-color: transparent;
  color: white;
}

/* Specific Category Styling */
.category-card[data-cat="violence"]:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.03) 100%);
  border-color: rgba(239, 68, 68, 0.3);
}
.category-card[data-cat="violence"]:hover .category-icon {
  background: #ef4444;
}
.category-card[data-cat="violence"] .category-badge {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.category-card[data-cat="language"]:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.03) 100%);
  border-color: rgba(249, 115, 22, 0.3);
}
.category-card[data-cat="language"]:hover .category-icon {
  background: #f97316;
}
.category-card[data-cat="language"] .category-badge {
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
}

.category-card[data-cat="romance"]:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.03) 100%);
  border-color: rgba(236, 72, 153, 0.3);
}
.category-card[data-cat="romance"]:hover .category-icon {
  background: #ec4899;
}
.category-card[data-cat="romance"] .category-badge {
  background: rgba(236, 72, 153, 0.08);
  color: #ec4899;
}

.category-card[data-cat="lgbt"]:hover {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.03) 100%);
  border-color: rgba(14, 165, 233, 0.3);
}
.category-card[data-cat="lgbt"]:hover .category-icon {
  background: #0ea5e9;
}
.category-card[data-cat="lgbt"] .category-badge {
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
}

.category-card[data-cat="magic"]:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.03) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}
.category-card[data-cat="magic"]:hover .category-icon {
  background: #8b5cf6;
}
.category-card[data-cat="magic"] .category-badge {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
}

.category-card[data-cat="religious"]:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}
.category-card[data-cat="religious"]:hover .category-icon {
  background: #10b981;
}
.category-card[data-cat="religious"] .category-badge {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.category-card[data-cat="ideology"]:hover {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.1) 0%, rgba(100, 116, 139, 0.03) 100%);
  border-color: rgba(100, 116, 139, 0.3);
}
.category-card[data-cat="ideology"]:hover .category-icon {
  background: #64748b;
}
.category-card[data-cat="ideology"] .category-badge {
  background: rgba(100, 116, 139, 0.08);
  color: #64748b;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-slate-800);
}

.category-desc {
  font-size: 0.85rem;
  color: var(--color-slate-500);
  line-height: 1.5;
}

/* Call to Action */
.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.cta-panel {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-slate-900);
  letter-spacing: -1px;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--color-slate-500);
  max-width: 540px;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Legal Terms Stylesheet Adaptation */
.legal-body {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem 2.5rem;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-slate-900);
}

.legal-meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-slate-400);
  margin-bottom: 2rem;
  display: block;
}

.legal-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-slate-800);
  margin: 2rem 0 1rem;
}

.legal-text {
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.legal-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-list li {
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Footer styling */
footer {
  margin-top: 6rem;
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-slate-800);
}

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

.footer-link {
  text-decoration: none;
  color: var(--color-slate-500);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-brand-600);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-slate-400);
  font-weight: 600;
}

/* Responsive Breakpoints */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  header nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-links {
    gap: 1.25rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .cta-title {
    font-size: 2rem;
  }
  .legal-body {
    padding: 2rem 1.25rem;
    margin: 2rem auto;
  }
}
