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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --orange: #ff6b1a;
  --orange-dark: #e55a0f;
  --orange-light: #ff8c42;
  --cream: #f5f0eb;
  --dark: #0f0f0f;
  --dark-secondary: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --success: #10b981;
  --danger: #ef4444;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: 0%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.3);
  color: var(--orange-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
}
.hero h1 span {
  color: var(--orange);
}
.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 24px;
  line-height: 1.7;
  max-width: 540px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 107, 26, 0.4);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 26, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat .stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
}
.hero-stat .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.hero-card-title {
  font-size: 13px;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.hero-card-name {
  font-size: 28px;
  font-weight: 900;
}
.trending-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  animation: pulse 2s infinite;
}
.feed-item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-item-keyword {
  font-weight: 600;
  font-size: 16px;
}
.feed-item-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.feed-item-spike {
  color: var(--success);
  font-size: 20px;
  font-weight: 800;
}
.hero-card-highlight {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 26, 0.15) 0%,
    rgba(255, 107, 26, 0.05) 100%
  );
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-top: 16px;
}
.hero-card-highlight-label {
  font-size: 12px;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.hero-card-highlight-text {
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.5;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--gray-light);
  border-bottom: 1px solid #e5e7eb;
  padding: 40px 0;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 24px;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* === PAIN POINTS === */
.pain-section {
  padding: 100px 0;
}
.pain-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
}
.pain-section h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}
.pain-section p {
  font-size: 19px;
  color: var(--gray);
  margin-top: 24px;
  line-height: 1.7;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.pain-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}
.pain-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.pain-text {
  font-size: 17px;
  color: #374151;
  line-height: 1.6;
}

/* === SOLUTION === */
.solution-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--white);
  padding: 100px 0;
  position: relative;
}
.solution-section::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.solution-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.solution-section h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 auto;
}
.solution-section p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.solution-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  transition: all 0.3s ease;
}
.solution-card:hover {
  border-color: rgba(255, 107, 26, 0.4);
  transform: translateY(-8px);
}
.solution-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}
.solution-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.solution-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* === LEAD FORM === */
.form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.form-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.form-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 56px 48px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
}
.form-card .section-label {
  text-align: center;
}
.form-card h2 {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -1px;
}
.form-card .form-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.6;
}
.form-group {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.1);
}
.form-select {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  background: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 26, 0.1);
}
.form-btn {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  color: var(--white);
  padding: 20px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 107, 26, 0.35);
  margin-top: 8px;
}
.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 26, 0.45);
}
.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
}
.urgency-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 26, 0.1) 0%,
    rgba(255, 107, 26, 0.05) 100%
  );
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.urgency-banner .urgency-dot {
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.urgency-banner span {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-dark);
}

/* === FAQ === */
.faq-section {
  padding: 100px 0;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-section h2 {
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  letter-spacing: -1px;
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-item.active {
  border-color: var(--orange);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 26, 0.03) 0%,
    transparent 100%
  );
}
.faq-q {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-toggle {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  display: none;
}
.faq-item.active .faq-a {
  display: block;
}

/* === FOOTER CTA === */
.footer-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: -20%;
  right: 0%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.footer-cta h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}
.footer-cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  line-height: 1.7;
}
.footer-cta .btn-primary {
  margin-top: 40px;
  font-size: 20px;
  padding: 22px 56px;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--orange);
}

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    var(--orange-dark) 100%
  );
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 107, 26, 0.5);
  cursor: pointer;
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 10px;
  border: none;
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.floating-cta .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .pain-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .pain-section h2,
  .solution-section h2,
  .footer-cta h2 {
    font-size: 30px;
  }
  .form-card {
    padding: 32px 24px;
  }
  .trust-items {
    grid-template-columns: 1fr;
  }
  .floating-cta {
    font-size: 13px;
    padding: 12px 20px;
    max-width: 80%;
    width: 100%;
    bottom: 40px;
    justify-content: center;
  }

  .hero::before {
    content: none;
  }

  .solution-section::before {
    content: none;
  }

  .footer-cta::before {
    content: none;
  }
}

html {
  scroll-behavior: smooth;
}

#form {
  scroll-margin-top: 200px;
}
