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

:root {
  --color-primary: #0df5e3;
  --color-secondary: #0ea5e9;
  --color-accent: #10b981;
  
  --bg-gradient: radial-gradient(at 80% 0%, rgba(13, 245, 227, 0.08) 0px, transparent 55%),
                 radial-gradient(at 0% 50%, rgba(14, 165, 233, 0.08) 0px, transparent 55%),
                 radial-gradient(at 80% 50%, rgba(16, 185, 129, 0.08) 0px, transparent 55%),
                 radial-gradient(at 0% 100%, rgba(13, 245, 227, 0.08) 0px, transparent 55%),
                 radial-gradient(at 80% 100%, rgba(14, 165, 233, 0.08) 0px, transparent 55%),
                 radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 55%);
                 
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --glass-surface: rgba(15, 22, 36, 0.7);
  --glass-border: rgba(13, 245, 227, 0.15);
  --glass-shadow: 0 10px 40px -10px rgba(13, 245, 227, 0.05);
  --glass-blur: 20px;
  
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  
  --header-height: 80px;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background-color: #0b0f19;
  background-image: var(--bg-gradient);
  background-size: 200% 200%;
  background-attachment: fixed;
  animation: auroraFlow 25s ease infinite alternate;
  color: #f8fafc; /* Dark Mode base color */
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@keyframes auroraFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* 3D Background Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  top: 10%;
  right: -100px;
  animation-duration: 25s;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation-duration: 22s;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  top: 60%;
  right: 15%;
  animation-duration: 18s;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-40px) scale(1.1) rotate(180deg); }
  100% { transform: translateY(20px) scale(0.9) rotate(360deg); }
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #94a3b8;
  margin-bottom: 5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* Premium 3D Glassmorphism Cards */
.card-glass {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3), inset 0 0 1px rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}

.card-glass:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -10px rgba(59, 130, 246, 0.25), inset 0 0 1px rgba(255, 255, 255, 0.3);
}

/* 3D Tilt Support */
.tilt-3d {
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-3d > * {
  transform: translateZ(25px); /* Push inner content forward */
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(11, 15, 25, 0.9);
  height: 70px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(13, 245, 227, 0.3);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

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

.nav a {
  text-decoration: none;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

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

.register-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
  filter: brightness(1.1);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 80%;
  max-width: 300px;
}

.mobile-link {
  text-decoration: none;
  color: #94a3b8;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: #fff;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #c084fc, var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.hero-tag::before {
  content: '✔';
  color: #10b981;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: #ffffff;
  color: #0b0f19;
  border: none;
  padding: 16px 36px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #f1f5f9;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  text-decoration: none;
  background: rgba(30, 41, 59, 0.6);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 36px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.9);
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* 3D Phone Mockup Container */
.phone-mockup-container {
  position: relative;
  perspective: 1500px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 290px;
  height: 580px;
  background: #0f172a;
  border-radius: 48px;
  padding: 10px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1), 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.05);
  transform: rotateY(-18deg) rotateX(10deg);
  transition: transform 0.2s ease-out, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0b0f19;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating 3D Badges */
.floating-badge {
  position: absolute;
  padding: 14px 22px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateZ(50px);
  pointer-events: none;
  animation: badgeFloat 6s infinite ease-in-out alternate;
  will-change: transform;
}

.badge-1 {
  top: 15%;
  right: -40px;
}

.badge-2 {
  bottom: 15%;
  left: -50px;
  animation-duration: 8s;
  animation-delay: -3s;
}

@keyframes badgeFloat {
  0% { transform: translateZ(50px) translateY(0); }
  100% { transform: translateZ(80px) translateY(-15px); }
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.advantage-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.advantage-icon {
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(30, 41, 59, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.advantage-description {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Steps Timeline */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  position: relative;
  margin-top: 20px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 0 0 8px rgba(11, 15, 25, 0.9), 0 10px 20px rgba(59, 130, 246, 0.3);
  z-index: 2;
  margin-bottom: 24px;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  z-index: -1;
  opacity: 0.3;
  filter: blur(6px);
  animation: pulse 3s infinite;
}

.step-content {
  padding: 30px 20px;
  width: 100%;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step-description {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Features Tabs Section */
.features-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #94a3b8;
}

.tab-btn:hover {
  background: rgba(30, 41, 59, 0.8);
  color: #fff;
}

.tab-btn.active {
  background: #ffffff;
  color: #0b0f19;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.features-content {
  padding: 50px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.tab-pane {
  display: none;
  width: 100%;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.tab-pane-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.tab-pane-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.tab-pane-text p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-bullets {
  list-style: none;
}

.feature-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #e2e8f0;
}

.feature-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-size: 1.1rem;
}

.tab-pane-image {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.dashboard-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.05);
}

/* Fallback Mock UI */
.placeholder-fallback {
  width: 100%;
  max-width: 320px;
  background: #0f172a;
  border-radius: var(--radius-sm);
  padding: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.p-header {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.p-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-line {
  font-size: 0.85rem;
  color: #94a3b8;
}

.p-card-btn {
  background: #1e293b;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  border: 1px solid #334155;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.p-card-btn:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
}

.p-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100px;
  border-bottom: 2px solid #334155;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.p-bar {
  width: 25px;
  background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
  border-radius: 4px 4px 0 0;
  animation: growBar 1s ease-out;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonial-content {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.rating {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* Contact & CTA */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.contact-card {
  padding: 40px;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.contact-card-desc {
  color: #94a3b8;
  font-size: 0.98rem;
  margin-bottom: 28px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: rgba(30, 41, 59, 0.4);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.icon-brand {
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
}

.arrow {
  font-weight: 700;
  color: #60a5fa;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.contact-item:hover .arrow {
  transform: translateX(5px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 36px auto;
  font-weight: 500;
}

.btn-large {
  background: #fff;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  filter: brightness(1.02);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.telegram {
  background: #0088cc;
  font-size: 1.3rem;
  padding-left: 2px;
}

/* Footer */
.footer {
  background: #070a13;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-tags {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }
  
  .tab-pane-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .tab-pane-image {
    order: -1;
  }
  
  .feature-bullets {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .nav {
    display: none;
  }
  
  .header #header-signup {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .features-content {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Partner Scrolling Ticker Banner Styling */
.partner-ticker-banner {
  padding: 30px 0;
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
}

.ticker-title {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c084fc;
  font-weight: 800;
  margin-bottom: 20px;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0b0f19, transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0b0f19, transparent);
}

.ticker-items {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: webTicker 45s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
}

.ticker-item span {
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
}

@keyframes webTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
