/* =====================
   ASKZ — Global Styles
   ===================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0F;
  --bg2: #111118;
  --surface: #16161f;
  --border: rgba(255,255,255,0.07);
  --text: #F0EFF8;
  --text-muted: rgba(240,239,248,0.5);
  --accent: #FF6B35;
  --accent2: #4ECDC4;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -1px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-display);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.orb-1 {
  width: 600px; height: 600px;
  background: #FF6B35;
  top: -200px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: #4ECDC4;
  bottom: 0; right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #A29BFE;
  top: 50%; left: 40%;
  animation: float 7s ease-in-out infinite 2s;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ECDC4;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ECDC4;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -3px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255,107,53,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.6s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.stat-label { font-size: 12px; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 60px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.phone-mockup {
  width: 240px;
  background: var(--surface);
  border-radius: 36px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(255,107,53,0.1);
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  padding: 20px 16px;
}
.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.screen-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -1px;
  color: var(--accent);
}
.screen-time {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.screen-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.sc {
  background: var(--surface);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.sc:hover { background: rgba(255,255,255,0.07); }
.sc-icon { font-size: 22px; }
.sc-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.screen-order {
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 14px;
  padding: 12px 14px;
}
.order-label { font-size: 11px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.order-bar {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  height: 4px;
  margin-bottom: 6px;
  overflow: hidden;
}
.order-progress {
  height: 100%;
  width: 65%;
  background: var(--accent);
  border-radius: 4px;
  animation: progress 3s ease-in-out infinite alternate;
}
@keyframes progress {
  from { width: 55%; }
  to { width: 75%; }
}
.order-status { font-size: 11px; color: var(--text-muted); }

.float-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 2;
}
.fb-1 { top: -10px; right: -30px; animation: float 5s ease-in-out infinite; }
.fb-2 { bottom: 60px; left: -40px; animation: float 6s ease-in-out infinite 1s; }

/* =====================
   SERVICES
   ===================== */
.services {
  padding: 120px 0;
  position: relative;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.service-card:last-child { grid-column: span 1; }
.service-card:nth-child(4) { grid-column: 1; }
.service-card:nth-child(5) { grid-column: 2; }
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(var(--accent-rgb, 255,107,53), 0.07), transparent 60%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card.featured {
  border-color: rgba(255,71,87,0.3);
  background: linear-gradient(135deg, rgba(255,71,87,0.08), var(--surface));
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: #FF4757;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-tag {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =====================
   APPS
   ===================== */
.apps {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.apps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apps-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 380px;
}
.app-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  opacity: 0;
  transform: translateX(-20px);
}
.app-link.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s, background 0.2s;
}
.app-link:hover {
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.app-link-icon { font-size: 24px; }
.app-link-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}
.app-link-name { font-weight: 600; font-size: 14px; }
.app-link-store { font-size: 12px; color: var(--text-muted); }
.app-link-arrow { color: var(--text-muted); flex-shrink: 0; }

.apps-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}
.apps-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,107,53,0.2), transparent 70%);
  border-radius: 50%;
}
.apps-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.app-icon-card {
  width: 100px; height: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.app-icon-card:hover { transform: scale(1.08) rotate(-3deg); }
.center-card {
  position: absolute;
  width: 80px; height: 80px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  background: var(--bg);
  border-color: rgba(255,107,53,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(255,107,53,0.2);
}
.ai-1 { animation: float 6s ease-in-out infinite; }
.ai-2 { animation: float 7s ease-in-out infinite 1s; }
.ai-3 { animation: float 5s ease-in-out infinite 0.5s; }
.ai-4 { animation: float 8s ease-in-out infinite 1.5s; }

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 80px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.footer-brand .logo { margin-bottom: 12px; display: block; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin: 60px auto 0; flex: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .apps-inner { grid-template-columns: 1fr; gap: 48px; }
  .apps-visual { height: 220px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 32px; }
  .footer-inner { flex-direction: column; }
  .hero-title { letter-spacing: -2px; }
}