@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN TOKENS & VARIABLE DECLARATIONS
   ========================================================================== */
:root {
  --primary-color: #2A1C40;
  --bg-color: #FFFFFF;
  --secondary-bg: #F7F7FA;
  --accent-color: #6D4AFF;
  --accent-hover: #5A3CD9;
  --accent-light: rgba(109, 74, 255, 0.1);
  --text-color: #111111;
  --text-light: #666666;
  --border-color: #ECECEC;
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1280px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.06);
  --shadow-premium: 0 20px 50px rgba(42, 28, 64, 0.08);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & SYSTEM DEFAULTS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 30%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   REUSABLE COMPONENTS & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--accent-light);
  color: var(--accent-color);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(109, 74, 255, 0.15);
  animation: pulse-badge 3s infinite ease-in-out;
}

@keyframes pulse-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Custom Buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(42, 28, 64, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(42, 28, 64, 0.35);
}

/* Button ripple visual effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}

.btn-primary:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: 0s;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary-bg);
  border-color: #D6D6D8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-apple {
  position: relative;
  overflow: visible !important;
}

.btn-apple::before {
  content: 'Coming Soon';
  position: absolute;
  top: -12px;
  right: -8px;
  font-size: 0.65rem;
  font-weight: 700;
  background-color: var(--accent-color);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(109, 74, 255, 0.3);
  z-index: 10;
}

.btn svg {
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: scale(1.1);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.5rem 0;
  background-color: transparent;
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236, 236, 236, 0.6);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--primary-color);
  position: relative;
  opacity: 0.85;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 10rem 0 7rem 0;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(109, 74, 255, 0.03) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(109, 74, 255, 0.04) 0%, transparent 40%);
  overflow: hidden;
}

/* Floating Blurred Circles */
.blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(100px);
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(109, 74, 255, 0.15) 0%, rgba(158, 133, 255, 0.05) 100%);
  top: 10%;
  right: -5%;
  animation: float-blob 20s infinite ease-in-out;
}

.blob-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(42, 28, 64, 0.08) 0%, rgba(109, 74, 255, 0.02) 100%);
  bottom: -10%;
  left: -10%;
  animation: float-blob 25s infinite ease-in-out alternate;
}

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

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-content p.hero-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 0.9;
  margin-bottom: 1.25rem;
}

.hero-content p.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-content .btn-group {
  justify-content: center;
}

/* Interactive Mockup Container */
.hero-mockup-wrapper {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

.mockup-container {
  transform: rotateY(-12deg) rotateX(8deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease-out;
  position: relative;
}

.mockup-container:hover {
  transform: rotateY(-5deg) rotateX(4deg) rotateZ(-1deg) scale(1.02);
}

/* CSS-based Mobile Phone Mockup */
.phone-frame {
  width: 290px;
  height: 590px;
  background-color: #0d0d0d;
  border-radius: 42px;
  border: 10px solid #222222;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 255, 255, 0.08),
              inset 0 0 10px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-bg);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: 0.75rem;
  overflow: hidden;
}

/* Phone notch */
.phone-notch {
  width: 110px;
  height: 20px;
  background-color: #222222;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

/* Inside Mockup App Dashboard UI */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.app-avatar {
  width: 26px;
  height: 26px;
  background: var(--accent-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.65rem;
}

.app-greeting p {
  font-size: 0.55rem;
  color: var(--text-light);
  line-height: 1;
}

.app-greeting h4 {
  font-size: 0.75rem;
  color: var(--primary-color);
}

.app-bell {
  width: 24px;
  height: 24px;
  background: #FFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card-earnings {
  background: linear-gradient(135deg, var(--primary-color) 0%, #4a346e 100%);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(42, 28, 64, 0.15);
}

.app-card-earnings p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-card-earnings h3 {
  font-size: 1.5rem;
  margin: 0.2rem 0;
  font-weight: 700;
}

.app-earnings-trend {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.app-section-title {
  font-size: 0.7rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-booking-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.app-booking-item {
  background-color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-booking-info h5 {
  font-size: 0.7rem;
  color: var(--primary-color);
}

.app-booking-info p {
  font-size: 0.6rem;
  color: var(--text-light);
}

.app-booking-status {
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  font-size: 0.55rem;
  font-weight: 600;
}

.app-booking-status.active {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.app-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.app-stat-card {
  background: #FFF;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  border: 1px solid var(--border-color);
}

.app-stat-card p {
  font-size: 0.55rem;
}

.app-stat-card h4 {
  font-size: 0.95rem;
  color: var(--primary-color);
  margin-top: 0.15rem;
}

/* Glassmorphic Floating Cards (overlapping the phone) */
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-glass);
  z-index: 3;
  pointer-events: none;
  animation: float-card 6s infinite ease-in-out;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.glass-card-1 {
  top: 15%;
  left: -80px;
  animation-delay: 0s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
}

.glass-card-1 .icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.glass-card-1 h5 {
  font-size: 0.85rem;
  color: var(--primary-color);
  line-height: 1.1;
}

.glass-card-1 p {
  font-size: 0.68rem;
  font-weight: 600;
  color: #10B981;
}

.glass-card-2 {
  bottom: 22%;
  right: -90px;
  animation-delay: 1.5s;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(109, 74, 255, 0.08);
}

.glass-card-2 h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.glass-card-2 .ratings {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.glass-card-2 .stars {
  color: #FBBF24;
  font-size: 1rem;
}

.glass-card-2 .val {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Decorative circles behind mockup */
.mockup-bg-shape {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 1;
}

.mockup-shape-1 {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #9E85FF 100%);
  top: -20px;
  right: -30px;
  opacity: 0.15;
  filter: blur(10px);
  animation: rotate-shape 20s infinite linear;
}

@keyframes rotate-shape {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   TRUST / STATS SECTION
   ========================================================================== */
.trust {
  padding: 5rem 0;
  background-color: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 3.5rem;
}

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

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.stat-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 550;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features {
  padding: 8rem 0;
  position: relative;
}

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

.feature-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 74, 255, 0.2);
  box-shadow: var(--shadow-premium);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(109, 74, 255, 0.03) 100%);
  color: var(--accent-color);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color) 0%, #9E85FF 100%);
  color: #FFFFFF;
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.85rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us {
  padding: 8rem 0;
  background-color: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Checklist items stylings */
.why-us-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checklist-icon {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background-color: var(--accent-light);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.checklist-text h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.checklist-text p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* Interactive Illustration Layout (left side of why-us) */
.why-us-illustration {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illust-main-card {
  width: 320px;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem;
  z-index: 2;
  position: relative;
}

.illust-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.illust-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: #ECE7FF;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.illust-userinfo h4 {
  font-size: 0.95rem;
  color: var(--primary-color);
}

.illust-userinfo p {
  font-size: 0.75rem;
}

.illust-chart {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px dashed var(--border-color);
}

.illust-chart-bar {
  width: 26px;
  background: linear-gradient(to top, var(--primary-color), var(--accent-color));
  border-radius: 6px 6px 0 0;
  transition: height var(--transition-slow);
  height: 0; /* Animated dynamically with JS or hover trigger */
  position: relative;
}

.illust-chart-bar::after {
  content: attr(data-val);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-color);
}

.illust-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.illust-badge-row span {
  font-size: 0.75rem;
  font-weight: 600;
}

.illust-badge-row .growth {
  color: #10B981;
}

/* Floating overlay items in illustration */
.illust-floating {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float-card 5s infinite ease-in-out;
}

.floating-card-left {
  top: 15%;
  left: -20px;
  animation-delay: 0.5s;
}

.floating-card-right {
  bottom: 15%;
  right: -20px;
  animation-delay: 2.2s;
}

/* ==========================================================================
   DOWNLOAD APP / CTA SECTION
   ========================================================================== */
.download {
  padding: 8rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(109, 74, 255, 0.05) 0%, transparent 60%);
}

.download-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(109, 74, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.download-card h2 {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.download-card p {
  max-width: 580px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
}

.download-card .btn-group {
  justify-content: center;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 5rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: #FFFFFF;
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--accent-color);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   SCROLL REVEAL & TRANSITION TRIGGERS
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up {
  transform: translateY(40px);
}

.reveal-slide-left {
  transform: translateX(40px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3.2rem; }
  .hero-content h1 { font-size: 3.2rem; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content p.hero-lead {
    display: none;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .hero-mockup-wrapper {
    margin-top: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .why-us-illustration {
    order: 2;
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .navbar {
    padding: 1.2rem 0;
  }
  
  .navbar-container {
    position: relative;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: -1.5rem;
    right: -1.5rem;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .hero {
    padding: 8rem 0 5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .stat-item::after {
    display: none !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .download-card {
    padding: 4rem 1.5rem;
  }
  
  .download-card h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
