/* Design System Variables - Apple-esque Luxury Dark */
:root {
  /* Colors */
  --bg-base: #000000;
  --bg-surface: #0a0a0c;
  --bg-surface-light: #131316;
  
  --text-primary: #ffffff;
  --text-secondary: #86868b;
  
  --gold-primary: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B8860B 100%);
  
  --emerald-primary: #00ff88;
  --emerald-gradient: linear-gradient(135deg, #00ff88 0%, #008f4c 100%);
  --emerald-glow: rgba(0, 255, 136, 0.15);
  
  --glass-bg: rgba(25, 25, 28, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Helpers */
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-secondary { color: var(--text-secondary); }

/* Ambient Background */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-base);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 20s infinite ease-in-out alternate;
}

.orb-1 { width: 50vw; height: 50vw; background: var(--emerald-glow); top: -20%; left: -10%; }
.orb-2 { width: 40vw; height: 40vw; background: rgba(212, 175, 55, 0.08); bottom: -10%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 30vw; height: 30vw; background: rgba(0, 100, 255, 0.05); top: 40%; left: 30%; animation-delay: -10s; }
.orb-4 { width: 25vw; height: 25vw; background: rgba(255, 255, 255, 0.03); top: 80%; left: 10%; animation-delay: -7s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

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

.padding-section {
  padding: 8rem 0;
}

.bg-alternate {
  background: rgba(10, 10, 12, 0.6);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.glow-border {
  position: relative;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Text Utilities */
.gold-text { color: var(--gold-primary); }
.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-emerald {
  background: var(--emerald-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-primary {
  background: var(--text-primary);
  color: var(--bg-base);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.02);
  background: var(--gold-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--text-secondary);
}

.large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.nav-link-subtle {
  color: var(--text-secondary) !important;
}
.nav-link-subtle:hover {
  color: var(--text-primary) !important;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 6px;
}

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

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-links a.btn-primary {
  color: var(--bg-base);
  font-weight: 600;
}

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

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.hero-content {
  flex: 1.2;
}

.hero .badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--emerald-primary);
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 95%;
  font-weight: 300;
  line-height: 1.7;
}

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

.hero-image-wrapper {
  flex: 1;
  position: relative;
  perspective: 1000px;
}

.hero-form-wrapper {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 136, 0.15);
}

.hero-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.hero-form-wrapper .contact-form input,
.hero-form-wrapper .contact-form select {
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: 100%;
  margin-bottom: 1rem;
  outline: none;
  font-size: 1rem;
}

.hero-form-wrapper .contact-form input:focus,
.hero-form-wrapper .contact-form select:focus {
  border-color: var(--emerald-primary);
  background: rgba(255, 255, 255, 0.1);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  border: 1px solid var(--glass-border);
}

.floating {
  animation: hover-float 6s ease-in-out infinite;
}

@keyframes hover-float {
  0% { transform: translateY(0px) rotateX(2deg); }
  50% { transform: translateY(-15px) rotateX(-2deg); }
  100% { transform: translateY(0px) rotateX(2deg); }
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 10, 12, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.stat-card small {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Sections Global */
.section-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* Two Column Layout (Why Us) */
.content-grid.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 5rem;
}

.content-grid.align-center {
  align-items: center;
}

.text-block h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.text-block p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.check-list {
  list-style: none;
}

.check-list li {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-primary);
  font-weight: bold;
}

/* Product Showcases (Alternating Rows) */
.product-showcase {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 8rem;
}

.product-showcase.reverse {
  flex-direction: row-reverse;
}

.showcase-img {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
}

.showcase-content {
  flex: 1;
}

.showcase-content h3 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.showcase-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Abstract placeholders */
.abstract-placeholder { width: 100%; height: 100%; }
.security-bg { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); opacity: 0.3;}
.kiosk-bg { background: linear-gradient(135deg, #1A2980 0%, #26D0CE 100%); opacity: 0.4;}
.tap-bg { background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%); opacity: 0.4;}
.cloud-bg { background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%); opacity: 0.4;}

/* Massive Features Grid */
.massive-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.feature-card {
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 136, 0.4);
}

.feature-card .icon-wrapper {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Community Banner */
.community-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  background: radial-gradient(circle at left, rgba(212, 175, 55, 0.1) 0%, transparent 50%), var(--glass-bg);
}

.banner-text {
  flex: 1;
  padding-right: 3rem;
}

.banner-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.banner-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn.fb-btn { background: #1877F2; }
.social-btn.wa-btn { background: #25D366; color: #000; }
.social-btn.wa-btn:hover { background: #1ebe59; }
.social-btn.fb-btn:hover { background: #166fe5; }

/* CTA Section Form (Updated) */
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem;
  background: radial-gradient(circle at right, rgba(0, 255, 136, 0.1) 0%, transparent 50%), var(--glass-bg);
}

.cta-content {
  flex: 1;
  padding-right: 4rem;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.cta-action {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input {
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-primary);
  width: 100%;
  outline: none;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.contact-form input:focus {
  border-color: var(--emerald-primary);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form button {
  padding: 1.2rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.social-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: bold;
  margin-right: 0.5rem;
}

.footer-links-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

.footer-links-col ul li {
  margin-bottom: 1rem;
}

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

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

.address-text {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
}
.footer-bottom a { color: var(--text-secondary); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Inner Page Headers */
.inner-hero {
  padding-top: 150px;
  padding-bottom: 5rem;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.inner-hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 8rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border-color: var(--gold-primary);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), var(--glass-bg));
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card .price span {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-card .desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-card .btn-primary {
  margin-top: auto;
  width: 100%;
}

/* Contact Page Layout */
.contact-page-section {
  padding: 8rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info-block h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-info-block p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--emerald-primary);
  background: rgba(0, 255, 136, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.info-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.info-text p {
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-form-block {
  padding: 4rem;
}

.contact-form-block .contact-form input,
.contact-form-block .contact-form textarea {
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-primary);
  width: 100%;
  outline: none;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

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

.contact-form-block .contact-form input:focus,
.contact-form-block .contact-form textarea:focus {
  border-color: var(--emerald-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments for Massive Content */
@media (max-width: 1200px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-content { text-align: center; padding-right: 0; }
  .hero-title { font-size: 3.5rem; }
  .hero-subtitle { margin: 0 auto 2.5rem auto; }
  .hero-cta-group { justify-content: center; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid.two-col { grid-template-columns: 1fr; }
  .product-showcase, .product-showcase.reverse { flex-direction: column; text-align: center; gap: 3rem; margin-top: 5rem; }
  .showcase-img { width: 100%; height: 300px; }
  
  .massive-features-grid { grid-template-columns: repeat(2, 1fr); }
  
  .community-banner { flex-direction: column; text-align: center; gap: 2rem; padding: 3rem; }
  .banner-text { padding-right: 0; }
  .banner-actions { justify-content: center; }
  
  .cta-container { flex-direction: column; text-align: center; gap: 4rem; padding: 3rem; }
  .cta-content { padding-right: 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .massive-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 2.5rem; }
}
