/* Adeege Premium App Landing Page CSS */
@import url('https://fonts.googleapis.com/css2?family=Outlet:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0a0f1d;
  --bg-secondary: #11182c;
  --color-primary: #3b82f6; /* Modern Blue */
  --color-secondary: #00f2fe; /* Cyan Accent */
  --color-accent: #f43f5e; /* Rose/Red */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Glowing Orbs */
.glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.15;
}

.orb-left {
  top: 10%;
  left: -150px;
  background: var(--color-primary);
}

.orb-right {
  top: 40%;
  right: -150px;
  background: var(--color-secondary);
  width: 450px;
  height: 450px;
}

.orb-bottom {
  bottom: -50px;
  left: 20%;
  background: var(--color-accent);
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 8%;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #fff 30%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo i {
  color: var(--color-primary);
  font-size: 28px;
  -webkit-text-fill-color: initial;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-secondary);
}

.btn-header {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #0a0f1d;
  background: linear-gradient(90deg, #fff, var(--color-secondary));
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  transition: all 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 150px 8% 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  flex: 1.2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: normal;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Smartphone Mockup */
.phone-showcase {
  width: 290px;
  height: 580px;
  border: 12px solid #1a2035;
  border-radius: 40px;
  background-color: #0b0f19;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.phone-screen-header {
  height: 55px;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.phone-screen-body {
  flex: 1;
  padding: 15px;
  background-color: #f8f9fe;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}

/* Mockup Elements */
.logo-sim {
  width: 24px;
  height: 24px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-sim {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-sim-title {
  font-size: 10px;
  color: #a0aec0;
  font-weight: 600;
  text-transform: uppercase;
}

.card-sim-value {
  font-size: 18px;
  font-weight: 800;
  color: #2d3748;
}

.bar-tab {
  height: 38px;
  border-bottom: 2px solid #edf2f7;
  display: flex;
}

.bar-tab-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  color: #718096;
}

.bar-tab-item.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* Features Grid */
.features {
  padding: 100px 8%;
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 25px;
}

.icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
}

.icon-cyan {
  background: rgba(0, 242, 254, 0.15);
  color: var(--color-secondary);
}

.icon-rose {
  background: rgba(244, 63, 94, 0.15);
  color: var(--color-accent);
}

.icon-green {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Screenshots / Demo Section */
.screenshots {
  padding: 100px 8%;
  text-align: center;
  position: relative;
}

.scroller-container {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 30px 10px;
  scroll-snap-type: x mandatory;
}

.scroller-container::-webkit-scrollbar {
  height: 8px;
}

.scroller-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.screenshot-slide {
  flex: 0 0 auto;
  width: 260px;
  height: 520px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--bg-secondary);
  scroll-snap-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* APP UI Mockups */
.app-screen-mock {
  width: 100%;
  height: 100%;
  background-color: #f8f9fe;
  color: #333;
  display: flex;
  flex-direction: column;
}

.app-header-mock {
  padding: 15px 12px;
  background-color: var(--color-primary);
  color: white;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-body-mock {
  padding: 12px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.mock-list-item {
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Download Section (CTA) */
.download {
  padding: 100px 8%;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d1323 100%);
  display: flex;
  justify-content: center;
}

.download-box {
  width: 100%;
  max-width: 900px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-box h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
}

.download-box p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 30px;
}

.download-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item h4 {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 800;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Footer */
footer {
  padding: 40px 8%;
  background: #080c16;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* Responsive query */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero p {
    margin: 0 auto 30px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 60px;
  }
  
  nav {
    display: none;
  }
}
