/* ==========================================================================
   Theme 7: Holographic Glassmorphism (Deep Slate, Aurora, & Glass)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core Colors */
  --bg-deep: #0B0C10;
  --bg-panel: rgba(255, 255, 255, 0.03);
  --bg-panel-hover: rgba(255, 255, 255, 0.06);

  /* Holographic Aurora Colors */
  --aurora-teal: #45C4A0;
  --aurora-violet: #7B61FF;
  --aurora-rose: #FF7E95;
  --aurora-blue: #2A8BFF;

  /* Typography */
  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;

  /* Borders & Glass */
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-border-highlight: 1px solid rgba(255, 255, 255, 0.2);
  --glass-blur: blur(16px);

  /* Layout */
  --container-width: 1240px;
  --section-pad: 8rem 2rem;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --glow-teal: 0 0 20px rgba(69, 196, 160, 0.4);
  --glow-violet: 0 0 20px rgba(123, 97, 255, 0.4);

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(123, 97, 255, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(69, 196, 160, 0.08), transparent 25%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Section Typography */
.section-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #A1A1AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

/* Gradient Text Class */
.text-gradient {
  background: linear-gradient(to right, var(--aurora-teal), var(--aurora-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Glass Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--trans-smooth);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aurora-violet), var(--aurora-blue));
  color: #FFF;
  border: none;
  box-shadow: var(--glow-violet);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-teal));
  z-index: -1;
  transition: opacity var(--trans-smooth);
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(69, 196, 160, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-glass {
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  color: var(--text-main);
  box-shadow: var(--shadow-glass);
}

.btn-glass:hover {
  background: var(--bg-panel-hover);
  border: var(--glass-border-highlight);
  transform: translateY(-2px);
}

/* ==========================================================================
   Strict Header (Dark Frosted Glass)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(11, 12, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--trans-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  padding: 0.8rem 0;
  background-color: rgba(11, 12, 16, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 50px;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.8;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--aurora-teal), var(--aurora-violet));
  transition: var(--trans-smooth);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   1. Hero Section (Animated Mesh Gradient)
   ========================================================================== */
.hero {
  padding: 12rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Complex Animated Mesh Gradient Background */
.hero-mesh {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 97, 255, 0.15), transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(69, 196, 160, 0.15), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(255, 126, 149, 0.15), transparent 40%);
  animation: meshRotate 20s infinite linear;
  z-index: 0;
  pointer-events: none;
}

@keyframes meshRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeUp 1s ease-out forwards;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

/* Floating Glass Orbs/Cards */
.hero-visual {
  position: relative;
  height: 500px;
  perspective: 1000px;
}

.glass-card {
  position: absolute;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-glass);
  transform-style: preserve-3d;
}

.glass-1 {
  top: 10%;
  right: 0;
  width: 300px;
  transform: translateZ(50px) rotateY(-10deg);
  animation: floatGlass 6s ease-in-out infinite alternate;
  border-top: 1px solid rgba(123, 97, 255, 0.5);
}

.glass-2 {
  bottom: 10%;
  left: 0;
  width: 260px;
  transform: translateZ(100px) rotateY(10deg);
  animation: floatGlass 8s ease-in-out infinite alternate-reverse;
  border-top: 1px solid rgba(69, 196, 160, 0.5);
}

.glass-card h4 {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glass-card h2 {
  font-size: 3rem;
  margin: 0.5rem 0;
  background: linear-gradient(to right, #FFF, #A1A1AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   2. Intelligent Stats
   ========================================================================== */
.stats {
  padding: 3rem 0;
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--aurora-teal);
  text-shadow: var(--glow-teal);
}

.stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ==========================================================================
   3. About (The Neural Network)
   ========================================================================== */
.about {
  padding: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1rem;
}

/* Glowing border effect */
.about-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--aurora-teal), var(--aurora-violet), var(--aurora-rose));
  border-radius: var(--radius-lg);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
  animation: pulseGlow 4s infinite alternate;
}

.about-visual img {
  border-radius: var(--radius-md);
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content h2 {
  text-align: left;
}

/* ==========================================================================
   4. Glass Services
   ========================================================================== */
.services {
  padding: var(--section-pad);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--trans-smooth);
  box-shadow: var(--shadow-glass);
}

.service-card:hover {
  background: var(--bg-panel-hover);
  border: var(--glass-border-highlight);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-violet);
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 10px rgba(123, 97, 255, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   5. AI ROI Calculator
   ========================================================================== */
.calculator-section {
  padding: var(--section-pad);
  background: radial-gradient(circle at top, rgba(69, 196, 160, 0.05), transparent 70%);
}

.calc-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  text-align: center;
}

.calc-box label {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  margin: 2rem 0;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-main);
  border: 4px solid var(--aurora-teal);
  cursor: pointer;
  box-shadow: var(--glow-teal);
  transition: 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-result {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: var(--glass-border);
}

.calc-result h4 {
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.calc-result h2 {
  font-size: 4rem;
  margin: 0;
  background: linear-gradient(to right, var(--aurora-teal), var(--aurora-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   6. Timeline Process
   ========================================================================== */
.process {
  padding: var(--section-pad);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
}

/* Glowing connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--aurora-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--aurora-violet);
  box-shadow: var(--glow-violet);
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   7. Sector Matrix
   ========================================================================== */
.industries {
  padding: var(--section-pad);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.industry-card {
  padding: 3rem 2rem;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--trans-smooth);
  cursor: pointer;
}

.industry-card:hover {
  border-color: rgba(69, 196, 160, 0.5);
  background: var(--bg-panel-hover);
  transform: translateY(-5px);
}

.industry-card svg {
  stroke: var(--text-main);
  margin-bottom: 1.5rem;
  opacity: 0.8;
  transition: var(--trans-fast);
}

.industry-card:hover svg {
  stroke: var(--aurora-teal);
  opacity: 1;
}

/* ==========================================================================
   8. Holographic Chart (CSS)
   ========================================================================== */
.reports {
  padding: var(--section-pad);
}

.chart-wrapper {
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 4rem;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  box-shadow: var(--shadow-glass);
}

.chart-bar {
  width: 70px;
  border-radius: 6px 6px 0 0;
  position: relative;
  background: linear-gradient(to top, rgba(123, 97, 255, 0.1), var(--aurora-violet));
  border-top: 2px solid #FFF;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transform-origin: bottom;
  animation: barRise 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
  box-shadow: var(--glow-violet);
}

.chart-bar:nth-child(1) {
  height: 25%;
  animation-delay: 0.1s;
}

.chart-bar:nth-child(2) {
  height: 45%;
  animation-delay: 0.3s;
}

.chart-bar:nth-child(3) {
  height: 75%;
  animation-delay: 0.5s;
}

.chart-bar:nth-child(4) {
  height: 100%;
  animation-delay: 0.7s;
  background: linear-gradient(to top, rgba(69, 196, 160, 0.1), var(--aurora-teal));
  border-top-color: #FFF;
  box-shadow: var(--glow-teal);
}

.chart-bar::before {
  content: attr(data-time);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.chart-bar::after {
  content: attr(data-val);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  background: var(--bg-panel);
  padding: 4px 8px;
  border-radius: 4px;
  border: var(--glass-border);
}

/* ==========================================================================
   9. Glass Testimonials
   ========================================================================== */
.testimonials {
  padding: var(--section-pad);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testi-card {
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 3rem;
  border-radius: var(--radius-md);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
  line-height: 1;
}

.testi-card p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testi-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testi-card span {
  font-size: 0.85rem;
  color: var(--aurora-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   10. CTA Section
   ========================================================================== */
.cta-section {
  padding: var(--section-pad);
  text-align: center;
}

.cta-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-field {
  width: 100%;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--trans-fast);
}

.input-field:focus {
  outline: none;
  border-color: var(--aurora-teal);
  box-shadow: 0 0 0 2px rgba(69, 196, 160, 0.2);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

/* ==========================================================================
   11. Strict Footer 
   ========================================================================== */
.site-footer {
  background-color: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 55px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-col p {
  font-size: 0.95rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a:hover {
  color: var(--aurora-teal);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

/* ==========================================================================
   12. Holographic Chat Widget
   ========================================================================== */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.chat-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aurora-violet), var(--aurora-blue));
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-smooth);
}

.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.6);
}

.chat-panel {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 320px;
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glass);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel.active {
  display: flex;
  animation: fadeUp 0.3s ease;
}

.chat-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  border-bottom: var(--glass-border);
}

.chat-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--aurora-teal);
}

.close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.chat-body {
  padding: 1.5rem;
  height: 250px;
  overflow-y: auto;
}

.chat-msg {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-bottom-left-radius: 0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  border: var(--glass-border);
}

.chat-input {
  display: flex;
  padding: 1rem;
  border-top: var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.chat-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  outline: none;
  font-family: inherit;
}

.chat-input button {
  background: none;
  border: none;
  color: var(--aurora-violet);
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
   Legal Pages Specific Styling
   ========================================================================== */
.legal-wrapper {
  padding: 12rem 0 6rem;
  min-height: 100vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-panel);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: var(--glass-border);
  padding-bottom: 1rem;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.legal-container ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-container li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlass {
  0% {
    transform: translateZ(50px) rotateY(-10deg) translateY(0);
  }

  100% {
    transform: translateZ(50px) rotateY(-10deg) translateY(-20px);
  }
}

@keyframes pulseGlow {
  from {
    opacity: 0.3;
    filter: blur(10px);
  }

  to {
    opacity: 0.7;
    filter: blur(20px);
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-content h2 {
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    transition: var(--trans-smooth);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .chart-wrapper {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 4rem;
  }

  .chart-bar {
    width: 100%;
    height: 40px !important;
    border-radius: 0 6px 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    border-right: 2px solid #FFF;
    transform-origin: left;
    animation: barRiseX 1.5s forwards;
  }

  .chart-bar::before {
    left: 0;
    top: -30px;
    transform: none;
  }

  .chart-bar::after {
    left: auto;
    right: 0;
    top: -35px;
    transform: none;
  }

  .legal-container {
    padding: 2rem;
  }
}

@keyframes barRiseX {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}