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

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
}

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

/* Brand Text */
.brand-text {
  font-weight: 700;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/header-bg2.png') center/cover;
  opacity: 0.4;
}

.header-top {
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 45px;
  height: 45px;
}

.logo span {
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
}

.slots-badge {
  background: #3b82f6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.slots-badge span {
  font-weight: 900;
  font-size: 18px;
}

.header-content {
  position: relative;
  z-index: 10;
  padding: 40px 0 80px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.header-left {
  flex: 1;
  max-width: 550px;
}

.headline {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}

.headline .highlight {
  color: #f59e0b;
  font-size: 56px;
}

.subheadline {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.crypto-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.crypto-icons img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.crypto-icons .glow-icon {
  width: 24px;
  height: 24px;
  align-self: center;
}

.availability {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #1a1f2e;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.rating-text {
  color: #fff;
}

.rating-text span {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.rating-text strong {
  display: block;
  font-weight: 700;
}

.rating-text .stars {
  height: 18px;
  margin-top: 5px;
}

/* Phone Mockup & Form */
.header-right {
  flex: 0 0 380px;
}

.phone-mockup {
  background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.phone-logo {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 15px;
}

.phone-title {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  color: #333;
}

.form-input::placeholder {
  color: #999;
}

.phone-input {
  padding-left: 90px !important;
}

.iti {
  width: 100%;
}

.iti__flag-container {
  padding: 0 8px;
}

.iti__selected-flag {
  background: #f3f4f6 !important;
  border-radius: 6px 0 0 6px;
  padding: 0 10px !important;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: #f59e0b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #d97706;
}

.payment-icons {
  margin-top: 15px;
  text-align: center;
}

.payment-icons img {
  max-height: 35px;
}

/* Crypto Section */
.crypto-section {
  background: #fff;
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
}

.section-title-area {
  flex: 1;
}

.section-label {
  display: block;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-label.dark {
  color: #6b7280;
}

.section-label.light {
  color: rgba(255,255,255,0.6);
}

.section-title-area h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
}

.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #f59e0b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #d97706;
}

.section-desc {
  flex: 0 0 300px;
  color: #6b7280;
  font-size: 15px;
}

.section-desc.light {
  color: rgba(255,255,255,0.7);
}

/* Crypto Display */
.crypto-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.crypto-list {
  flex: 0 0 280px;
}

.crypto-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 12px;
}

.crypto-item:last-child {
  margin-bottom: 0;
}

.crypto-item img {
  width: 40px;
  height: 40px;
}

.crypto-info {
  flex: 1;
}

.crypto-symbol {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.crypto-name {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.crypto-price {
  font-weight: 700;
  font-size: 16px;
}

.crypto-price.positive {
  color: #22c55e;
}

.phones-center {
  flex: 1;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
}

.phones-img {
  max-width: 350px;
}

/* Testimonials Section */
.testimonials-section {
  background: #f9fafb;
  padding: 80px 0 60px;
}

.testimonials-section.dark {
  background: #1f2937;
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.testimonial-card.light {
  background: #f3f4f6;
}

.testimonial-card .stars {
  margin-bottom: 15px;
}

.testimonial-card .stars img {
  height: 18px;
}

.testimonial-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-weight: 700;
  color: #1f2937;
  font-size: 15px;
}

.author-earnings {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 60px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/pros-bg.png') center/cover;
  opacity: 0.3;
}

.features-section .container {
  position: relative;
  z-index: 1;
}

.features-section h2 {
  color: #fff;
}

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

.feature-card {
  border-left: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
}

.feature-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 50px;
}

.feature-content {
  display: flex;
  gap: 20px;
}

.feature-content img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.feature-content p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* Earnings Banner */
.earnings-banner {
  background: #3b82f6;
  padding: 20px 0;
  text-align: center;
}

.earnings-banner p {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.earnings-banner .amount {
  color: #bef264;
}

.earnings-banner .highlight {
  color: #bef264;
  text-transform: uppercase;
}

/* About Section */
.about-section {
  background: #fff;
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image > img {
  width: 100%;
  border-radius: 16px;
}

.exchange-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.exchange-logos img {
  width: 35px;
  height: 35px;
}

.exchange-logos .arrow-icon {
  color: #6b7280;
  font-size: 20px;
  margin-left: 10px;
}

.about-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-content p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Social Testimonials */
.social-testimonials {
  background: #f9fafb;
}

.social-card {
  background: #f3f4f6;
  padding: 25px 30px;
  border-bottom: 1px solid #e5e7eb;
}

.social-card.white {
  background: #fff;
}

.social-author {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.social-author > img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-info .author-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.stars-small {
  height: 16px;
  width: fit-content;
}

.social-actions {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #4b5563;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}

.social-text {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  padding-left: 90px;
}

/* Counter Banner */
.counter-banner {
  background: #3b82f6;
  padding: 20px 0;
  text-align: center;
}

.counter-banner p {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

/* Bottom CTA */
.bottom-cta {
  background: #f9fafb;
  padding: 0;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  align-items: center;
}

.bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-content {
  padding: 60px;
}

.bottom-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
  line-height: 1.3;
}

.bottom-content p {
  font-size: 24px;
  color: #6b7280;
  font-weight: 300;
}

/* Footer */
.footer {
  background: #1f2937;
  padding: 40px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand .logo span {
  font-size: 18px;
}

.tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-legal {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-legal p {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

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

.footer-bottom i {
  color: #3b82f6;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  transition: background 0.3s;
}

.sticky-btn:hover {
  background: #d97706;
}

.sticky-btn small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: #1f2937;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.modal-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.modal-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.modal-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(59,130,246,0.2);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 25px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-main {
    flex-direction: column;
  }
  
  .header-left {
    max-width: 100%;
    text-align: center;
  }
  
  .headline {
    font-size: 32px;
  }
  
  .headline .highlight {
    font-size: 42px;
  }
  
  .crypto-icons,
  .rating-section {
    justify-content: center;
  }
  
  .header-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
  
  .crypto-display {
    flex-direction: column;
  }
  
  .crypto-list {
    width: 100%;
  }
  
  .phones-center {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 30px 0;
  }
  
  .testimonials-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
  }
  
  .social-text {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
  }
  
  .tagline {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
  }
  
  .exchange-logos {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .bottom-content {
    padding: 30px;
  }
  
  .bottom-content h2 {
    font-size: 24px;
  }
  
  .bottom-content p {
    font-size: 18px;
  }
}
