:root {
  --bg-color: #050505;
  --bg-secondary: #0a0a0c;
  --bg-tertiary: #121316;
  --accent-blue: #0055FF;
  --accent-light: #4D8BFF;
  --text-main: #f0f0f0;
  --text-muted: #9fa1a6;
  --glass-bg: rgba(18, 19, 22, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 300;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(to right, #fff, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(40, 73, 165, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(40, 73, 165, 0.6);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Ensure it's white if it's the black png/svg */
}

.logo-text {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-blue);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -2;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.7), var(--bg-color));
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.hero-content {
  text-align: left;
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
}

/* Browser Mockup */
.browser-mockup {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  height: 450px;
  display: flex;
  flex-direction: column;
  transition: transform 0.1s ease-out;
}

.browser-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
  user-select: none;
}

.scroll-content {
  padding: 1rem;
  will-change: transform;
  cursor: grab;
}

.scroll-content:active {
  cursor: grabbing;
}

.mockup-hero {
  height: 140px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-light) 100%);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.mockup-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mockup-section-alt {
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.mockup-box {
  flex: 1;
  height: 70px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
}

/* Sections */
section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.1);
  opacity: 0.3;
  z-index: -1;
}

.bg-nature { background-image: url('assets/section_nature.png'); }
.bg-street { background-image: url('assets/section_street.png'); }

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 200px, transparent calc(100% - 200px), var(--bg-color) 100%),
              radial-gradient(circle at center, transparent, var(--bg-color) 80%);
  z-index: -1;
}

/* Info Blocks */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: rgba(40, 73, 165, 0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(40, 73, 165, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-light);
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Feature Split Layout */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-text p {
  margin-bottom: 2rem;
}

.feature-visual {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(40,73,165,0.1) 0%, transparent 60%);
  z-index: 0;
}

.mockup-ui {
  position: relative;
  z-index: 1;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 1rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
}
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.mockup-row:last-child {
  border-bottom: none;
}

.mockup-badge {
  background: rgba(40,73,165,0.2);
  color: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* CRM Mockup (Interactive) */
.crm-mockup-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}

.crm-mockup-item:hover {
  background: rgba(255,255,255,0.03);
}

.crm-mockup-item.active {
  background: rgba(40,73,165,0.15);
}

.crm-mockup-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--accent-blue);
}

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

.crm-mockup-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.crm-mockup-time {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.crm-mockup-service {
  color: var(--text-muted);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crm-detail-header {
  margin-bottom: 1rem;
}

.crm-detail-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.crm-detail-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.crm-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.crm-detail-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1rem;
}

.crm-detail-box.full {
  grid-column: 1 / -1;
}

.crm-detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.crm-detail-value {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.3s ease-out forwards;
  opacity: 0;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
}

.stat-number {
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1;
  color: var(--accent-blue);
}

.stat-desc {
  font-size: 1.15rem;
  color: #fff;
  opacity: 0.9;
}

/* Carousel / Showcase */
.showcase-section {
  overflow: hidden;
  padding: 8rem 0 12rem;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  margin-top: 4rem;
}

.carousel-item {
  position: absolute;
  width: 90%;
  max-width: 900px;
  height: 475px;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  cursor: pointer;
}

.carousel-item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--accent-blue) 100%);
  opacity: 0.7;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.showcase-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* Dim the video slightly so text is readable */
  transition: opacity 0.3s ease;
}

.carousel-item.active .showcase-video {
  opacity: 1; /* Full brightness when active */
}



.carousel-item.active {
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 3;
  filter: brightness(1);
}

.carousel-item.active .carousel-item-placeholder {
  opacity: 1;
}



.carousel-item.prev {
  transform: translateX(-40%) scale(0.8) translateZ(-100px);
  z-index: 2;
  filter: blur(4px) brightness(0.5);
}

.carousel-item.next {
  transform: translateX(40%) scale(0.8) translateZ(-100px);
  z-index: 2;
  filter: blur(4px) brightness(0.5);
}

.carousel-item.hidden-prev {
  transform: translateX(-80%) scale(0.6) translateZ(-200px);
  z-index: 1;
  opacity: 0;
}
.carousel-item.hidden-next {
  transform: translateX(80%) scale(0.6) translateZ(-200px);
  z-index: 1;
  opacity: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.carousel-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent-light);
  transition: var(--transition-smooth);
}

.faq-icon::before { top: 11px; left: 0; width: 24px; height: 2px; }
.faq-icon::after { top: 0; left: 11px; width: 2px; height: 24px; }

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  color: var(--text-muted);
  padding-right: 2rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

/* Contact Form */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 4rem;
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(255,255,255,0.05);
}

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

/* Footer */
footer {
  background: var(--bg-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-login {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.admin-login:hover {
  color: #fff;
}

/* Admin Modal */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.admin-modal.active {
  opacity: 1;
  pointer-events: all;
}

.admin-container {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.admin-modal.active .admin-container {
  transform: translateY(0);
}

.admin-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.close-modal:hover {
  color: #fff;
}

.admin-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.admin-login-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
}

.admin-login-screen .form-group {
  width: 100%;
  max-width: 400px;
}

.admin-inbox {
  display: none;
  width: 100%;
  height: 100%;
}

.admin-inbox.active {
  display: flex;
}

.inbox-sidebar {
  width: 350px;
  border-right: 1px solid var(--glass-border);
  overflow-y: auto;
  background: var(--bg-tertiary);
}

.submission-item {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submission-item:hover, .submission-item.active {
  background: rgba(40,73,165,0.1);
  border-left: 4px solid var(--accent-blue);
}

.submission-name {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.submission-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.inbox-content {
  flex: 1;
  padding: 3rem;
  overflow-y: auto;
}

.inbox-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 1.25rem;
}

.submission-detail {
  display: none;
}
.submission-detail.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.detail-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.detail-field {
  margin-bottom: 1.5rem;
}

.detail-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1.1rem;
  color: #fff;
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-slow {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}
.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-bounce-subtle {
  animation: bounce-subtle 2s ease-in-out infinite;
}

@keyframes width-expand {
  0% { width: 40%; }
  50% { width: 80%; }
  100% { width: 40%; }
}
.animate-width {
  animation: width-expand 4s ease-in-out infinite;
}

@keyframes scale-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 10px var(--accent-light)); }
  100% { transform: scale(1); }
}
.animate-scale-pulse {
  animation: scale-pulse 2s ease-in-out infinite;
}

@keyframes pulse-bg {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
  100% { filter: brightness(1); }
}
.animate-pulse-bg {
  animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes stat-update {
  0% { color: var(--accent-blue); }
  30% { color: #27c93f; text-shadow: 0 0 20px rgba(39, 201, 63, 0.6); }
  100% { color: var(--accent-blue); }
}
.stat-update-anim {
  animation: stat-update 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

.roll-container {
  display: inline-flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
}

.roll-up-anim {
  display: flex;
  flex-direction: column;
  animation: roll-up 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes roll-up {
  0% { transform: translateY(0); filter: blur(0); }
  50% { filter: blur(2px); }
  100% { transform: translateY(-50%); filter: blur(0); }
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .hero-visual {
    width: 80%;
    margin: 0 auto;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .feature-split.reverse {
    direction: ltr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .carousel-item {
    width: 80%;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .nav-links {
    display: none;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-visual {
    width: 100%;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .admin-inbox.active {
    flex-direction: column;
  }
  
  .inbox-sidebar {
    width: 100%;
    height: 30vh;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .inbox-content {
    padding: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
