/* ============================================
   GetSalaried.com - WordPress Theme Styles
   Premium Fintech Dark Glassmorphism Design
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep: #03142b;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --neon: #00C6FF;
  --neon-glow: 0 0 20px rgba(0,198,255,0.3), 0 0 40px rgba(0,198,255,0.1);
  --text-primary: #f0f6fc;
  --text-muted: #8b9fc1;
  --border-color: rgba(255,255,255,0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, #03142b 0%, #071c35 50%, #0a1628 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.section-padding {
  padding: 100px 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }

.neon-text {
  background: linear-gradient(135deg, #00C6FF 0%, #0072ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  font-size: 0.95rem;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
}

.neon-border {
  border: 1px solid rgba(0,198,255,0.3);
  box-shadow: var(--neon-glow);
}

/* ---------- Buttons ---------- */
.neon-button {
  display: inline-block;
  background: linear-gradient(135deg, #00C6FF 0%, #0072ff 100%);
  color: #03142b;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.95rem;
}

.neon-button:hover {
  box-shadow: 0 0 30px rgba(0,198,255,0.4);
  transform: translateY(-2px);
}

.outline-button {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(0,198,255,0.3);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: var(--neon-glow);
}

.outline-button:hover {
  background: rgba(0,198,255,0.1);
}

/* ---------- Countdown Banner ---------- */
.countdown-banner {
  background: linear-gradient(90deg, #00C6FF 0%, #0072ff 100%);
  color: #03142b;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}

.countdown-banner span {
  font-weight: 700;
  margin: 0 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(3,20,43,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,198,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
}

.site-logo .neon-text { font-size: inherit; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-menu a:hover {
  color: var(--neon);
  background: rgba(0,198,255,0.05);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  background: rgba(3,20,43,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}

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

.mobile-menu a {
  padding: 12px 16px;
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--neon);
  background: rgba(0,198,255,0.05);
}

/* ---------- Profit Ticker ---------- */
.ticker-bar {
  overflow: hidden;
  background: rgba(0,198,255,0.05);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
}

.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
  font-size: 0.75rem;
  color: var(--neon);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 20px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg .glow-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(0,198,255,0.1);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-bg .glow-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(0,198,255,0.05);
  border-radius: 50%;
  filter: blur(100px);
  animation: pulseGlow 4s ease-in-out infinite 1s;
}

.hero-bg .grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(0,198,255,0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(0,198,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--neon);
  margin-bottom: 32px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trust-badges .badge svg { color: var(--neon); }

/* ---------- About ---------- */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  padding: 32px;
  text-align: center;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  background: rgba(0,198,255,0.05);
}

.about-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0,198,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s ease;
}

.about-card:hover .icon-wrap {
  background: rgba(0,198,255,0.2);
}

.about-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--neon);
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,198,255,0.3);
  box-shadow: var(--neon-glow);
}

.service-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0,198,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.service-card:hover .icon-wrap { background: rgba(0,198,255,0.2); }

.service-card .icon-wrap svg { width: 24px; height: 24px; color: var(--neon); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* ---------- Plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover { transform: translateY(-8px); }

.plan-card.popular {
  border: 1px solid rgba(0,198,255,0.3);
  box-shadow: var(--neon-glow);
  transform: scale(1.02);
}

.plan-card.popular:hover { transform: scale(1.05) translateY(-8px); }

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00C6FF, #0072ff);
  color: #03142b;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.plan-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }

.plan-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.plan-features {
  flex: 1;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-features li svg { width: 16px; height: 16px; color: var(--neon); flex-shrink: 0; }

.plan-cta {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
}

.plan-card.popular .plan-cta {
  background: linear-gradient(135deg, #00C6FF, #0072ff);
  color: #03142b;
}

.plan-card:not(.popular) .plan-cta {
  background: var(--bg-card);
  border: 1px solid rgba(0,198,255,0.3);
  color: var(--text-primary);
}

.plan-card:not(.popular) .plan-cta:hover { background: rgba(0,198,255,0.1); }

/* ---------- Process / How It Works ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,198,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  transition: background 0.3s ease;
}

.process-step:hover .icon-wrap { background: rgba(0,198,255,0.2); }

.process-step .icon-wrap svg { width: 28px; height: 28px; color: var(--neon); }

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C6FF, #0072ff);
  color: #03142b;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.875rem; }

/* ---------- Login / Register ---------- */
.login-section {
  max-width: 480px;
  margin: 0 auto;
}

.login-form {
  padding: 40px;
  border-radius: 16px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus {
  border-color: rgba(0,198,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,198,255,0.1);
}

.form-group input::placeholder { color: rgba(255,255,255,0.2); }

.form-buttons { display: flex; gap: 12px; margin-top: 24px; }

.form-buttons .neon-button,
.form-buttons .outline-button {
  flex: 1;
  padding: 12px;
  font-size: 0.9rem;
}

/* ---------- Dashboard Preview ---------- */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dash-stat {
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.dash-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.dash-stat .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
}

.dash-stat .value.green { color: #22c55e; }
.dash-stat .value.neon { color: var(--neon); }

.profit-chart {
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.profit-chart h3 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.chart-placeholder {
  height: 200px;
  background: linear-gradient(180deg, rgba(0,198,255,0.1) 0%, transparent 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.chart-placeholder .chart-line {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

.chart-placeholder .chart-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0,198,255,0.15) 0%, transparent 100%);
  clip-path: polygon(0% 80%, 10% 60%, 20% 70%, 30% 40%, 40% 50%, 50% 20%, 60% 35%, 70% 15%, 80% 25%, 90% 10%, 100% 30%, 100% 100%, 0% 100%);
}

.trade-history { padding: 32px; border-radius: 16px; }
.trade-history h3 { font-size: 1rem; margin-bottom: 20px; }

.trade-table { width: 100%; border-collapse: collapse; }
.trade-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-color);
}

.trade-table td {
  padding: 12px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
}

.trade-table .profit { color: #22c55e; }
.trade-table .loss { color: #ef4444; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card { padding: 24px; border-radius: 16px; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(0,198,255,0.3); box-shadow: var(--neon-glow); }

.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars svg { width: 14px; height: 14px; }
.stars svg.filled { color: var(--neon); fill: var(--neon); }
.stars svg.empty { color: var(--text-muted); }

.testimonial-card blockquote {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-card .author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ---------- Contact & FAQ ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.contact-info h3 { font-size: 1.2rem; margin-bottom: 20px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item svg { width: 20px; height: 20px; color: var(--neon); flex-shrink: 0; }

.faq h3 { font-size: 1.2rem; margin-bottom: 20px; }

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--neon); }

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

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

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

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 48px 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
  .section-padding { padding: 60px 16px; }
  .hero-section { padding: 120px 16px 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; max-width: 300px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-8px); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .form-buttons { flex-direction: column; }
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-table { font-size: 0.8rem; }
  .trade-table th, .trade-table td { padding: 8px 10px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .dashboard-grid { grid-template-columns: 1fr; }
}
