/* Visual Styling for DAAM.KG Premium Dark Mode Landing Page */

:root {
  --bg-dark: #07100D;
  --bg-card: #0D1E19;
  --bg-glass: rgba(13, 30, 25, 0.65);
  --border-glass: rgba(46, 229, 157, 0.12);
  --border-glass-hover: rgba(46, 229, 157, 0.4);
  
  --primary: #2EE59D;
  --primary-hover: #23b77c;
  --secondary: #F2994A;
  --text-light: #F4F6F5;
  --text-dim: #8FA099;
  --white: #ffffff;
  
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
  
  --glow-shadow: 0 0 30px rgba(46, 229, 157, 0.18);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glowing Background Blobs */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  right: -100px;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: var(--secondary);
  top: 40%;
  left: -200px;
}

.blob-3 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  bottom: -200px;
  right: 15%;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

p {
  color: var(--text-dim);
  font-size: 16px;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(7, 16, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  display: block;
  object-fit: contain;
}

.logo-accent {
  color: var(--primary);
}

.logo-dot {
  color: var(--secondary);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-primary-header {
  background-color: var(--primary);
  color: #07100D !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(46, 229, 157, 0.25);
}

.btn-primary-header:hover {
  background-color: var(--white);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 10px; }
.mobile-menu-btn span:nth-child(2) { top: 16px; }
.mobile-menu-btn span:nth-child(3) { top: 22px; }

/* Hero Section */
.hero-section {
  padding: 100px 24px 120px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

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

.badge-wrapper {
  margin-bottom: 20px;
}

.badge {
  background-color: rgba(46, 229, 157, 0.08);
  border: 1px solid rgba(46, 229, 157, 0.2);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #aefad7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-cta {
  background-color: var(--primary);
  color: #07100D;
  padding: 18px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(46, 229, 157, 0.35);
}

.btn-cta:hover {
  background-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary-cta {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--border-glass-hover);
  padding: 18px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Phone Mockup Floating Frame */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotateY(-6deg) rotateX(6deg); }
  50% { transform: translateY(-12px) rotateY(-6deg) rotateX(6deg); }
  100% { transform: translateY(0px) rotateY(-6deg) rotateX(6deg); }
}

.phone-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.phone-mockup {
  background: #111b17;
  border: 14px solid #23342d;
  border-radius: 40px;
  width: 310px;
  height: 610px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 2px 2px rgba(46, 229, 157, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.phone-speaker {
  width: 60px;
  height: 4px;
  background-color: #23342d;
  border-radius: 10px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background-color: #0b1512;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding-top: 15px;
}

.phone-badge-pointer {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(242, 153, 74, 0.4);
}

/* Phone App Styling */
.mini-app-header {
  background-color: #0d1e19;
  border-bottom: 1px solid var(--border-glass);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-app-header h4 {
  color: var(--white);
  font-size: 13px;
  margin: 0;
  font-family: var(--font-sans);
}

.mini-app-header p {
  color: var(--primary);
  font-size: 8px;
  margin: 2px 0 0;
  font-weight: 700;
}

.mini-lang {
  background-color: rgba(46, 229, 157, 0.12);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
}

.mini-app-body {
  padding: 12px;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-app-welcome h5 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}

.mini-app-welcome p {
  font-size: 10px;
  color: var(--text-dim);
}

.mini-categories {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 6px;
}

.mini-cat {
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-dim);
  padding-bottom: 4px;
  transition: all 0.2s;
}

.mini-cat.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.mini-dishes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-dish {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #0d1e19;
  border: 1px solid var(--border-glass);
  padding: 8px;
  border-radius: 10px;
}

.mini-dish-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.img-beshbarmak { background-image: url('images/beshbarmak.jpg'); background-color: #08120f; }
.img-lagman { background-image: url('images/lagman.jpg'); background-color: #08120f; }
.img-bozo { background-image: url('images/seabuckthorn-tea.jpg'); background-color: #08120f; }
.img-tea { background-image: url('images/seabuckthorn-tea.jpg'); background-color: #08120f; }

.mini-dish-info {
  flex-grow: 1;
}

.mini-dish-info h6 {
  font-size: 12px;
  color: var(--white);
  margin: 0 0 2px;
  font-family: var(--font-sans);
}

.price-text {
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
}

.mini-add-btn {
  background-color: var(--primary);
  color: #07100D;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.1s;
}

.mini-add-btn:active {
  transform: scale(0.9);
}

.mini-app-footer {
  background-color: #0d1e19;
  padding: 10px 12px;
  border-top: 1px solid var(--border-glass);
}

.mini-cart-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-icon-badge {
  font-size: 14px;
  position: relative;
}

.cart-icon-badge span {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.total-label {
  font-size: 11px;
}

.mini-order-submit-btn {
  background-color: var(--primary);
  color: #07100D;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.mini-order-submit-btn:disabled {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  cursor: not-allowed;
}

.mini-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d1e19;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  z-index: 20;
}

.success-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(46, 229, 157, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mini-success-overlay h5 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}

.mini-success-overlay p {
  color: var(--text-dim);
  font-size: 11px;
  margin-bottom: 30px;
}

.mini-reset-btn {
  background-color: var(--primary);
  color: #07100D;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
}

/* Features Section */
.features-section {
  padding: 100px 24px;
  background-color: rgba(13, 30, 25, 0.3);
  border-top: 1px solid var(--border-glass);
}

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

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

.section-badge {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1.15;
}

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

.feature-card {
  background-color: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow);
  border-color: var(--border-glass-hover);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(46, 229, 157, 0.08);
  border: 1px solid rgba(46, 229, 157, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
}

/* Demo Section (Dashboard explainer) */
.demo-section {
  padding: 100px 24px;
  background-color: rgba(7, 16, 13, 0.95);
  border-top: 1px solid var(--border-glass);
}

.demo-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.badge-mini {
  background-color: rgba(46, 229, 157, 0.08);
  border: 1px solid rgba(46, 229, 157, 0.2);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
}

.demo-text h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.demo-text p {
  margin-bottom: 20px;
}

.demo-list {
  list-style: none;
  margin-bottom: 30px;
}

.demo-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-dim);
}

.demo-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.inline-btn {
  display: inline-block;
}

/* Dashboard Mockup Card */
.dashboard-preview-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  overflow: hidden;
}

.db-header {
  background-color: #08120f;
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border-glass);
}

.db-user {
  font-size: 11px;
  background-color: rgba(46, 229, 157, 0.12);
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.db-body {
  padding: 24px;
}

.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.db-stat-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.db-stat-box strong {
  font-size: 24px;
  color: var(--white);
  font-family: var(--font-sans);
}

.db-stat-box span {
  font-size: 10px;
  color: var(--text-dim);
}

.db-stat-box.text-orange strong {
  color: var(--secondary);
}

.db-table-mock {
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
}

.db-row-mock {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 12px;
  border-bottom: 1px solid var(--border-glass);
  font-size: 12px;
}

.db-row-mock.header-row {
  background-color: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  color: var(--white);
}

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

.badge-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  width: fit-content;
}

.badge-pill.active { background-color: rgba(46, 229, 157, 0.12); color: var(--primary); }
.badge-pill.inactive { background-color: rgba(242, 153, 74, 0.12); color: var(--secondary); }

/* Stats counter */
.stats-counter-section {
  background-color: #08120f;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  color: var(--white);
  padding: 60px 24px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box h3 {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(46, 229, 157, 0.2);
}

.stat-box p {
  color: var(--text-dim);
  font-size: 14px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 24px;
  background-color: var(--bg-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  border: 1px solid var(--border-glass);
  background-color: var(--bg-glass);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow);
  border-color: var(--border-glass-hover);
}

.pricing-card.popular {
  border: 2.5px solid var(--primary);
  background-color: #0b1d17;
  box-shadow: 0 20px 45px rgba(46, 229, 157, 0.1);
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #07100D;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.price-value {
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.price-value span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}

.pricing-desc {
  font-size: 13px;
  margin-bottom: 30px;
  min-height: 40px;
  color: var(--text-dim);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--text-dim);
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border-glass-hover);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-pricing:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

.btn-primary-pricing {
  background-color: var(--primary);
  color: #07100D;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(46, 229, 157, 0.25);
}

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

/* FAQ Section */
.faq-section {
  padding: 100px 24px;
  background-color: rgba(13, 30, 25, 0.2);
  border-top: 1px solid var(--border-glass);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-glass);
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 20px;
}

/* Join Section */
.join-section {
  padding: 100px 24px;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-glass);
}

.join-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.join-info h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.join-info p {
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-details-list p {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.join-form-card {
  background-color: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.join-form-card h3 {
  font-size: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 12px;
}

.form-label {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  gap: 6px;
  color: var(--text-dim);
}

.form-label input {
  padding: 12px 16px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-sans);
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--white);
  outline: none;
  transition: all 0.2s;
}

.form-label input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(46, 229, 157, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-submit-request {
  width: 100%;
  background-color: var(--primary);
  color: #07100D;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(46, 229, 157, 0.25);
}

.btn-submit-request:hover {
  background-color: var(--white);
  transform: translateY(-2px);
}

.form-success-box {
  text-align: center;
  padding: 30px 10px;
}

.form-success-box h4 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.hidden {
  display: none !important;
}

/* Footer */
.main-footer {
  background-color: #050b09;
  border-top: 1px solid var(--border-glass);
  padding: 40px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-footer p {
  color: var(--text-dim);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .demo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin: 40px auto 0;
  }

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

  .join-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0b1512;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-glass);
  }

  .nav-links.active {
    display: flex;
  }

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

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
  }

  .btn-primary-header {
    width: 100%;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .hero-section {
    padding: 60px 16px 80px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 34px;
    line-height: 1.15;
  }
  
  .hero-desc {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn-cta, .btn-secondary-cta {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .join-form-card {
    padding: 24px 16px;
  }
  
  .join-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  .phone-mockup {
    width: 270px;
    height: 530px;
  }
  
  .phone-badge-pointer {
    font-size: 10px;
    bottom: -40px;
  }
  
  .mini-app-welcome h5 {
    font-size: 14px;
  }
  
  .price-value {
    font-size: 32px;
  }
}
