/* Super Lead Generator by ragalus - Landing Page */
/* Minimalist Design - Black, White, Orange */

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #ef6e4e;
  --gray-dark: #1a1a1a;
  --gray-medium: #666666;
  --gray-light: #999999;
  --gray-ultra-light: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-content {
  padding: 12px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo {
  flex-direction: row;
  gap: 12px;
}

.nav-logo .logo img {
  width: 250px;
  height: auto;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-logo .logo img {
  width: 170px;
}

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

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

.nav-links a {
  color: var(--gray-medium);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo img {
  width: 80px;
  /* Large initial size */
  height: 80px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logo.scrolled {
  flex-direction: row;
  gap: 12px;
}

.logo.scrolled img {
  width: 32px;
  height: 32px;
}

.logo.scrolled span {
  font-size: 14px;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links-right {
  justify-content: flex-end;
}

.nav-links-left a,
.nav-links-right a {
  color: var(--gray-medium);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
  color: var(--orange);
}

.btn-outline {
  border: 1px solid var(--black);
  padding: 8px 20px;
  border-radius: 6px;
  color: var(--black) !important;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white) !important;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(239, 110, 78, 0.1);
  border: 1px solid rgba(239, 110, 78, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.highlight {
  color: var(--orange);
  position: relative;
}

.hero-description {
  font-size: 18px;
  color: var(--gray-medium);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(239, 110, 78, 0.3);
}

.btn-primary:hover {
  background: #ff8060;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 110, 78, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-medium);
}

/* Hero Visual - Mockup */
.hero-visual {
  position: relative;
}

.mockup-window {
  background: var(--black);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.window-header {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #333;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666;
}

.window-dots span:nth-child(1) {
  background: #ff5f57;
}

.window-dots span:nth-child(2) {
  background: #febc2e;
}

.window-dots span:nth-child(3) {
  background: #28c840;
}

.window-title {
  color: #999;
  font-size: 13px;
  font-weight: 500;
}

.window-content {
  padding: 24px;
}

.mockup-header {
  border-bottom: 1px solid var(--orange);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.mockup-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mockup-subtitle {
  color: #999;
  font-size: 11px;
}

.mockup-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mockup-btn {
  padding: 8px 16px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
}

.mockup-btn.active {
  background: var(--orange);
  border-color: var(--orange);
}

.mockup-table {
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 0.8fr;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 11px;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row.header {
  background: #0a0a0a;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 10px;
  border-bottom: 1px solid var(--orange);
}

.table-row:not(.header) {
  color: #ccc;
}

.table-row:not(.header):hover {
  background: #0a0a0a;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-medium);
}

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

.feature-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: #fafafa;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

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

.step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 30px;
  font-size: 32px;
  color: var(--orange);
  opacity: 0.3;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.step-content p {
  font-size: 14px;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* Installation */
.installation {
  padding: 100px 0;
  background: var(--white);
}

.installation-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.installation-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #fafafa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.installation-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.installation-step .step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.installation-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--black);
}

.installation-step p {
  font-size: 14px;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.5;
}

.installation-usage {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.installation-usage h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.installation-usage ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.installation-usage li {
  color: var(--gray-light);
  font-size: 15px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  position: relative;
  padding-left: 36px;
}

.installation-usage li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--orange);
  font-weight: bold;
}

.installation-usage li strong {
  color: var(--orange);
}

@media (max-width: 768px) {
  .installation-content {
    grid-template-columns: 1fr;
  }

  .installation-usage ol {
    grid-template-columns: 1fr;
  }
}

/* Download Section */
.download {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

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

.download-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.download-content p {
  font-size: 18px;
  color: var(--gray-light);
  margin-bottom: 40px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(239, 110, 78, 0.4);
  margin-bottom: 40px;
}

.btn-download:hover {
  background: #ff8060;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 110, 78, 0.5);
}

.download-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 14px;
}

.info-item svg {
  opacity: 0.7;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 40px;
  border-top: 1px solid #1a1a1a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--gray-light);
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo {
  flex-direction: row !important;
  gap: 12px !important;
}

.footer-logo img,
.footer-logo svg {
  width: 250px;
  height: auto;
}

.footer-logo span {
  color: var(--white) !important;
  font-size: 18px !important;
}

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

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  color: var(--gray-medium);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

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

.footer-disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-dark);
}

/* Support Section */
.support {
  padding: 80px 0;
  background: var(--white);
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.support-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--black);
}

.support-text p {
  font-size: 18px;
  color: var(--gray-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(239, 110, 78, 0.3);
  margin-top: 20px;
}

.btn-support:hover {
  background: #ff8060;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 110, 78, 0.4);
}

.support-image {
  display: flex;
  justify-content: center;
}

.support-image img {
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .support-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-image {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step::after {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links-left,
  .nav-links-right {
    gap: 16px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
  }

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

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

  .section-header h2 {
    font-size: 32px;
  }

  .download-content h2 {
    font-size: 32px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}