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

:root {
  --brand-pink: #FF2A7A;
  --brand-pink-hover: #E01E67;
  --brand-blue: #0084FF;
  --brand-blue-hover: #0066CC;
  --brand-purple: #7C3AED;
  --gradient-brand: linear-gradient(135deg, #FF2A7A 0%, #7C3AED 50%, #0084FF 100%);
  --gradient-subtle: linear-gradient(135deg, #FFF0F5 0%, #F0F7FF 100%);
  --gradient-usp: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 30px rgba(255, 42, 122, 0.25);
  --shadow-blue-glow: 0 10px 30px rgba(0, 132, 255, 0.25);
  
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 32px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Utilities */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-pink {
  color: var(--brand-pink) !important;
}

.text-blue {
  color: var(--brand-blue) !important;
}

.bg-gradient-subtle {
  background: var(--gradient-subtle);
}

/* Header & Navigation */
.navbar-amiroa {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.navbar-amiroa.scrolled {
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.nav-link-amiroa {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1.1rem !important;
  transition: color 0.2s ease;
}

.nav-link-amiroa:hover {
  color: var(--brand-pink);
}

/* Custom Buttons */
.btn-pink {
  background: var(--brand-pink);
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(255, 42, 122, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pink:hover {
  background: var(--brand-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 42, 122, 0.45);
}

.btn-outline-amiroa {
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue) !important;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-outline-amiroa:hover {
  background: var(--brand-blue);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-glow);
}

.btn-store {
  background: #0F172A;
  color: #FFFFFF !important;
  border-radius: 16px;
  padding: 0.75rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
  color: #FFFFFF !important;
  background: #1E293B;
}

.btn-store i {
  font-size: 2rem;
  color: #22C55E;
}

.btn-store .store-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
  display: block;
  line-height: 1;
}

.btn-store .store-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Badges */
.badge-pill-pink {
  background: #FFEBF2;
  color: var(--brand-pink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 42, 122, 0.2);
}

.badge-pill-blue {
  background: #E8F4FF;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 132, 255, 0.2);
}

.badge-usp {
  background: linear-gradient(135deg, #FF2A7A 0%, #0084FF 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(255, 42, 122, 0.25);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  padding: 5.5rem 0 2rem;
  background: radial-gradient(circle at 15% 25%, rgba(255, 42, 122, 0.03) 0%, transparent 45%),
              radial-gradient(circle at 85% 75%, rgba(0, 132, 255, 0.03) 0%, transparent 45%);
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.6rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.hero-mockup-wrapper {
  position: relative;
  text-align: center;
  padding: 1rem;
}

.hero-mockup-img {
  max-width: 82%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.hero-mockup-img:hover {
  transform: translateY(-6px);
}

/* Floating Cards on Mockup */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 0.75rem 1.15rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-card-1 {
  top: 6%;
  left: 2%;
}

.floating-card-2 {
  bottom: 10%;
  right: 2%;
  animation-delay: 2s;
}

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

@media (max-width: 991px) {
  .floating-card {
    position: static;
    display: inline-flex;
    margin: 0.5rem;
    animation: none;
  }
}

/* Per-Second Billing USP Spotlight Section */
.usp-card-dark {
  background: var(--gradient-usp);
  border-radius: var(--border-radius-lg);
  color: #FFFFFF;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
}

.usp-card-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.usp-card-dark::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
}

.comparison-box.highlight {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid var(--brand-pink);
}

/* Feature Cards */
.feature-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 42, 122, 0.3);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.icon-pink {
  background: #FFEBF2;
  color: var(--brand-pink);
}

.icon-blue {
  background: #E8F4FF;
  color: var(--brand-blue);
}

.icon-purple {
  background: #F3E8FF;
  color: var(--brand-purple);
}

/* How It Works Steps */
.step-card {
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  height: 100%;
  border: 1px solid #E2E8F0;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 16px rgba(255, 42, 122, 0.25);
}

/* Stats Section */
.stats-box {
  padding: 2rem 1.25rem;
  border-radius: var(--border-radius-md);
  background: var(--bg-light);
  border: 1px solid #E2E8F0;
  text-align: center;
}

.stats-number {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

/* Expert Onboarding Banner */
.expert-banner {
  background: linear-gradient(135deg, #FDF2F8 0%, #EFF6FF 100%);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid #E2E8F0;
}

/* FAQ Accordion */
.accordion-amiroa .accordion-item {
  border: 1px solid #E2E8F0;
  border-radius: var(--border-radius-sm) !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.accordion-amiroa .accordion-button {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  padding: 1.1rem 1.35rem;
  background: var(--bg-white);
}

.accordion-amiroa .accordion-button:not(.collapsed) {
  background: #FFF5F8;
  color: var(--brand-pink);
  box-shadow: none;
}

.accordion-amiroa .accordion-button:focus {
  box-shadow: none;
}

.accordion-amiroa .accordion-body {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  padding: 1.1rem 1.35rem;
}

/* Modal Styling */
.modal-content-custom {
  border-radius: 24px;
  border: none;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.modal-header-custom {
  background: linear-gradient(135deg, #FFF0F5 0%, #F0F7FF 100%);
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid #E2E8F0;
}

.modal-body-custom {
  padding: 2rem;
}

.btn-whatsapp-submit {
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-whatsapp-submit:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Footer Styling */
footer {
  background: #090E1A;
  color: #E2E8F0;
  padding: 3.5rem 0 2rem;
}

footer h5 {
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

footer p, 
footer .footer-text, 
footer .small, 
footer .text-muted {
  color: #CBD5E1 !important;
  font-size: 0.92rem;
  line-height: 1.6;
}

footer a {
  color: #CBD5E1 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

footer a:hover {
  color: var(--brand-pink) !important;
  padding-left: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
  margin-top: 2.75rem;
}

.footer-bottom p {
  color: #94A3B8 !important;
  font-size: 0.88rem;
}

/* Fixed Mobile Sticky Download Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 1px solid #E2E8F0;
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
