/* ==================== */
/* CSS Variables - Easy Theme Customization */
/* ==================== */
:root {
  /* Primary Colors */
  --primary-color: #0a4d68;
  --primary-light: #0d5f82;
  --primary-dark: #073647;

  /* Secondary Colors */
  --secondary-color: #088395;
  --secondary-light: #0a9fb5;
  --secondary-dark: #066a77;

  /* Accent Colors */
  --accent-color: #05bfdb;
  --accent-light: #3dd0e8;
  --accent-dark: #0499b0;

  /* Neutral Colors */
  --text-dark: #1a1a2e;
  --text-gray: #666666;
  --text-light: #f5f5f5;
  --background-white: #ffffff;
  --background-light: #f8fafb;
  --background-dark: #0f1419;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #088395, #05bfdb);
  --gradient-secondary: linear-gradient(135deg, #0a4d68, #088395);
  --gradient-light: linear-gradient(
    135deg,
    rgba(8, 131, 149, 0.1),
    rgba(5, 191, 219, 0.1)
  );

  /* Typography */
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==================== */
/* Reset & Base Styles */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ==================== */
/* Navigation */
/* ==================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transition: var(--transition-smooth);
  background: transparent;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-light);
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-full);
  color: var(--secondary-color);
  font-weight: 600;
}

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

.nav-links a {
  font-weight: 500;
  position: relative;
  transition: var(--transition-smooth);
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.nav-links li:nth-child(1) a {
  animation-delay: 0.1s;
}
.nav-links li:nth-child(2) a {
  animation-delay: 0.2s;
}
.nav-links li:nth-child(3) a {
  animation-delay: 0.3s;
}
.nav-links li:nth-child(4) a {
  animation-delay: 0.4s;
}
.nav-links li:nth-child(5) a {
  animation-delay: 0.5s;
}

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

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

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

.nav-cta {
  padding: 0.75rem 2rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-smooth);
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards 0.6s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(8, 131, 149, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9998;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
  }

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

  .nav-cta {
    display: none;
  }
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f0faff 100%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 191, 219, 0.3), transparent);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 131, 149, 0.25), transparent);
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 77, 104, 0.2), transparent);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

.hero-content {
  z-index: 2;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(5, 191, 219, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-full);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.2s;
}

.badge-icon {
  font-size: 1.2rem;
}

h1 {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-stats-inline {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.stat-inline {
  display: flex;
  flex-direction: column;
}

.stat-inline .stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-inline .stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn-primary,
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(8, 131, 149, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* ==================== */
/* Hero Visual */
/* ==================== */
.hero-visual {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInRight 1s ease forwards 0.5s;
}

.phone-container {
  position: relative;
}

.phone-mockup {
  width: 320px;
  height: 650px;
  background: var(--gradient-primary);
  border-radius: 45px;
  padding: 14px;
  box-shadow: var(--shadow-xl);
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  width: 140px;
  height: 28px;
  background: var(--text-dark);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.app-preview {
  padding: 50px 20px 20px;
  height: 100%;
  background: linear-gradient(to bottom, #f8fafb, white);
}

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

.profile-circle {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.header-text .greeting {
  font-size: 0.75rem;
  color: var(--text-gray);
}

.header-text .name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.balance-card {
  background: var(--gradient-primary);
  padding: 1.5rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  color: white;
}

.balance-label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.balance-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.balance-growth {
  font-size: 0.75rem;
  opacity: 0.8;
}

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

.action-btn {
  background: white;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.trans-icon {
  font-size: 1.25rem;
}

.trans-details {
  flex: 1;
}

.trans-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.trans-time {
  font-size: 0.7rem;
  color: var(--text-gray);
}

.trans-amount {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  animation: floatCard 4s ease-in-out infinite;
}

.card-icon {
  font-size: 1.5rem;
}

.card-1 {
  top: 10%;
  right: -80px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -80px;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 15%;
  right: -90px;
  animation-delay: 3s;
}

/* ==================== */
/* Section Styles */
/* ==================== */
section {
  padding: var(--spacing-xl) 5%;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(5, 191, 219, 0.1);
  border: 1px solid var(--accent-color);
  border-radius: var(--radius-full);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* ==================== */
/* How It Works */
/* ==================== */
.how-it-works {
  background: var(--background-light);
}

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

.step-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-smooth);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.2;
}

.step-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.step-card p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.step-detail {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.step-arrow {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: 300;
}

/* ==================== */
/* Products Section */
/* ==================== */
.products {
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: linear-gradient(135deg, white, #f8fafb);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.product-card.featured {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--accent-color);
}

.product-card.featured h3,
.product-card.featured p,
.product-card.featured ul {
  color: white;
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition-bounce);
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.product-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-features {
  margin-bottom: 1.5rem;
}

.product-features li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.commission-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-light);
  color: var(--secondary-color);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

.product-card.featured .commission-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* ==================== */
/* Features Grid */
/* ==================== */
.features {
  background: var(--background-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-item .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

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

/* ==================== */
/* FAQ Section */
/* ==================== */
.faq {
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background: rgba(5, 191, 219, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ==================== */
/* Download CTA */
/* ==================== */
.download-cta {
  background: var(--gradient-secondary);
  color: white;
  text-align: center;
}

.download-content-center {
  max-width: 800px;
  margin: 0 auto;
}

.download-content-center h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.download-content-center p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  min-width: 180px;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.store-icon {
  font-size: 2rem;
}

.store-text {
  text-align: left;
}

.store-label {
  font-size: 0.7rem;
  color: var(--text-gray);
}

.store-name {
  font-size: 1rem;
  font-weight: 600;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.trust-icon {
  color: var(--accent-color);
  font-weight: 700;
}

/* ==================== */
/* Footer */
/* ==================== */
footer {
  background: var(--background-dark);
  color: var(--text-light);
  padding: var(--spacing-md) 5%;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.9rem;
}

/* ==================== */
/* WhatsApp Float Button */
/* ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ==================== */
/* Animations */
/* ==================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

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

  .hero-stats-inline {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .step-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-button {
    width: 100%;
    max-width: 300px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: var(--spacing-lg) 5%;
  }

  .phone-mockup {
    width: 280px;
    height: 570px;
  }
}
