/* PhyllisGladys SEO - Money Machine Premium Design */

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

:root {
  /* Money Machine Colors - Matching Command Center */
  --neon-green: #10b981;
  --neon-green-bright: #34d399;
  --purple-accent: #8b5cf6;
  --teal-accent: #14b8a6;
  
  /* Dark Gradient Background */
  --bg-dark-1: #020617;
  --bg-dark-2: #020b26;
  --bg-dark-3: #0f172a;
  
  /* UI Colors */
  --text-dark: #0f172a;
  --text-gray: #475569;
  --text-light: #64748b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ==================== FLOATING MONEY SYMBOLS (Command Center Style) ==================== */
.floating-bg-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  color: rgba(16, 185, 129, 0.45); /* neon green with opacity */
  font-size: 2rem;
  animation: float 15s infinite linear;
  text-shadow: 0 0 6px rgba(0,0,0,0.25);
  filter: saturate(1.2);
  width: auto;
  height: auto;
  stroke: none;
}

.float-icon.icon-1 {
  left: 6%;
  animation-delay: -4s;
  font-size: 1.7rem;
}

.float-icon.icon-2 {
  left: 12%;
  animation-delay: -9s;
  font-size: 2.0rem;
}

.float-icon.icon-3 {
  left: 18%;
  animation-delay: -2s;
  font-size: 1.6rem;
}

.float-icon.icon-4 {
  left: 24%;
  animation-delay: -7s;
  font-size: 2.3rem;
}

.float-icon.icon-5 {
  left: 30%;
  animation-delay: -3s;
  font-size: 1.8rem;
}

.float-icon.icon-6 {
  left: 36%;
  animation-delay: -11s;
  font-size: 2.1rem;
}

.float-icon.icon-7 {
  left: 42%;
  animation-delay: -5s;
  font-size: 1.9rem;
}

.float-icon.icon-8 {
  left: 48%;
  animation-delay: -10s;
  font-size: 2.2rem;
}

.float-icon.icon-9 {
  left: 54%;
  animation-delay: -6s;
  font-size: 1.7rem;
}

.float-icon.icon-10 {
  left: 60%;
  animation-delay: -8s;
  font-size: 2.4rem;
}

.float-icon.icon-11 {
  left: 66%;
  animation-delay: -12s;
  font-size: 1.8rem;
}

.float-icon.icon-12 {
  left: 72%;
  animation-delay: -3s;
  font-size: 2.0rem;
}

.float-icon.icon-13 {
  left: 78%;
  animation-delay: -9s;
  font-size: 1.6rem;
}

.float-icon.icon-14 {
  left: 84%;
  animation-delay: -2s;
  font-size: 2.5rem;
}

.float-icon.icon-15 {
  left: 90%;
  animation-delay: -7s;
  font-size: 1.9rem;
}

.float-icon.icon-16 {
  left: 96%;
  animation-delay: -11s;
  font-size: 2.1rem;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* ==================== STICKY NAVIGATION ==================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #020617 0%, #020b26 50%, #0f172a 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--neon-green-bright);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--neon-green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  background: var(--neon-green-bright);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: var(--neon-green);
  background: rgba(16, 185, 129, 0.1);
  color: var(--neon-green-bright);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-block {
  display: block;
  width: 100%;
}

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

.btn-outline:hover {
  background: var(--neon-green);
  color: var(--white);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
  padding: 80px 24px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--neon-green);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--teal-accent) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.benefit-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

/* ==================== PERFECT FOR SECTION ==================== */
.perfect-for-section {
  padding: 60px 24px;
  background: var(--off-white);
  position: relative;
  z-index: 1;
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.pill {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--border-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.pill:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(16, 185, 129, 0.05);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #020617 0%, #020b26 50%, #0f172a 100%);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
  color: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
  border-color: var(--neon-green);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 8px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.8;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--neon-green-bright);
}

.period {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.8;
  margin-left: 4px;
}

.pricing-description {
  text-align: center;
  opacity: 0.9;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card-secondary {
  border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card-secondary:hover {
  border-color: var(--purple-accent);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

/* ==================== FORM SECTION ==================== */
.form-section {
  padding: 80px 24px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.form-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 40px 0 32px;
}

.optional-section {
  background: var(--off-white);
  border: 2px dashed var(--border-light);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.optional-section label {
  font-size: 1rem;
  color: var(--text-dark);
}

.field-help {
  font-size: 0.9375rem;
  color: var(--text-gray);
  margin-bottom: 12px;
  line-height: 1.6;
}

.field-note {
  background: var(--white);
  border-left: 3px solid var(--neon-green);
  padding: 12px;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-top: 12px;
}

.field-note a {
  color: var(--neon-green);
  font-weight: 600;
  text-decoration: none;
}

.field-note a:hover {
  text-decoration: underline;
}

.consent {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 24px;
}

.consent a {
  color: var(--neon-green);
  text-decoration: none;
}

.consent a:hover {
  text-decoration: underline;
}

form .btn-primary {
  width: 100%;
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.success-message {
  display: none;
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--teal-accent) 100%);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}

.success-message.show {
  display: block;
}

/* Bot trap - hidden */
.bot-trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* ==================== FOOTER ==================== */
footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

footer a {
  color: var(--neon-green);
  text-decoration: none;
  margin: 0 12px;
}

footer a:hover {
  text-decoration: underline;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 32px 24px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    font-size: 0.875rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .float-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }
  
  .price {
    font-size: 3rem;
  }
  
  .nav-container {
    height: 64px;
  }
  
  .nav-logo {
    font-size: 1.125rem;
  }
}
