/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

/* SECTION 1: NAVIGATION BAR */


/* SECTION 2: FEATURES HERO */
.hero-section {
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%);
  padding: 60px 24px;
  text-align: center;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary {
  background: #3b82f6;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn-secondary:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* SECTION 3: FEATURE CATEGORIES NAVIGATION */
.feature-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 70px;
  z-index: 999;
  transition: all 0.3s;
}

.feature-nav.sticky {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.feature-nav-container::-webkit-scrollbar {
  display: none;
}

.feature-nav-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 20px 0;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.feature-nav-link:hover,
.feature-nav-link.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

/* FEATURE SECTIONS */
.feature-section {
  padding: 80px 24px;
  background: #ffffff;
}

.feature-section-alt {
  background: #f9fafb;
}

.feature-section-highlight {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.feature-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: center;
}

.feature-container-reverse {
  grid-template-columns: 60% 40%;
}

.feature-container-reverse .feature-content {
  order: 2;
}

.feature-container-reverse .feature-image {
  order: 1;
}

.feature-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: inline-block;
}

.feature-icon-animated {
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.sparkle {
  position: absolute;
  font-size: 20px;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
  top: -10px;
  right: -10px;
  animation-delay: 0s;
}

.sparkle-2 {
  bottom: -10px;
  left: -10px;
  animation-delay: 0.7s;
}

.sparkle-3 {
  top: 50%;
  right: -20px;
  animation-delay: 1.4s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

.feature-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.feature-description-highlight {
  font-size: 19px;
  color: #1f2937;
  font-weight: 500;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-list-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.feature-list ul {
  list-style: none;
}

.feature-list li {
  padding: 10px 0;
  font-size: 16px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkmark {
  color: #10b981;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.pro-tip {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pro-tip-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pro-tip-content {
  font-size: 15px;
  color: #78350f;
  line-height: 1.5;
}

.results-box {
  background: #d1fae5;
  border-left: 4px solid #10b981;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 32px;
}

.results-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.results-content {
  font-size: 15px;
  color: #065f46;
  line-height: 1.5;
}

/* HOW IT WORKS */
.how-it-works {
  margin-bottom: 32px;
}

.how-it-works-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  font-size: 28px;
  flex-shrink: 0;
}

.step-content {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  padding-top: 4px;
}

.step-content strong {
  color: #1f2937;
}

/* SCREENSHOT PLACEHOLDERS */
.feature-image {
  position: relative;
}

.screenshot-placeholder {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #d1d5db;
}

.screenshot-animated {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.screenshot-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  min-height: 400px;
}

.screenshot-header {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e7eb;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.screenshot-card {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 8px;
  height: 160px;
}

.screenshot-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
}

.pipeline-stage {
  background: #3b82f6;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  flex: 1;
  text-align: center;
}

.pipeline-arrow {
  color: #3b82f6;
  font-size: 24px;
  font-weight: 700;
}

.match-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.match-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.3s;
}

.match-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.match-high {
  border-color: #10b981;
  background: #f0fdf4;
}

.match-medium {
  border-color: #f59e0b;
  background: #fffbeb;
}

.match-score {
  font-size: 24px;
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
}

.match-medium .match-score {
  color: #f59e0b;
}

.match-details {
  flex: 1;
}

.match-name {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.match-info {
  font-size: 13px;
  color: #6b7280;
}

.portal-preview {
  margin-top: 20px;
}

.portal-header {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
}

.portal-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.portal-card {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 8px;
  height: 120px;
}

.deal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.stat-card {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

/* LEADERBOARD STYLES */
.leaderboard {
  margin-top: 20px;
}

.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.podium-place {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px 12px 0 0;
  padding: 20px 16px;
  text-align: center;
  min-width: 100px;
  transition: transform 0.3s;
}

.podium-place:hover {
  transform: translateY(-4px);
}

.podium-first {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  height: 140px;
  border: 3px solid #f59e0b;
}

.podium-second {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  height: 110px;
  border: 3px solid #9ca3af;
}

.podium-third {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  height: 90px;
  border: 3px solid #f97316;
}

.podium-rank {
  font-size: 36px;
  margin-bottom: 8px;
}

.podium-name {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
  font-size: 15px;
}

.podium-score {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

/* CHART STYLES */
.chart-placeholder {
  margin-top: 40px;
  padding: 20px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  gap: 16px;
}

.chart-bar {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 8px 8px 0 0;
  flex: 1;
  min-height: 40px;
  transition: all 0.3s;
}

.chart-bar:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleY(1.05);
}

/* COMMUNICATION TIMELINE */
.comm-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
}

.comm-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.comm-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.comm-text {
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  padding: 20px;
}

.team-member {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.team-avatar {
  font-size: 48px;
  margin-bottom: 8px;
}

.team-name {
  font-size: 14px;
  color: #1f2937;
  font-weight: 600;
}

/* MOBILE SHOWCASE */
.mobile-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

.mobile-phone {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.mobile-phone:hover {
  transform: translateY(-8px);
}

.mobile-phone:nth-child(2) {
  transform: scale(1.1);
}

.mobile-phone:nth-child(2):hover {
  transform: scale(1.1) translateY(-8px);
}

.phone-screen {
  background: #ffffff;
  border-radius: 16px;
  width: 140px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

/* FEATURES GRID SECTION */
.features-grid-section {
  padding: 80px 24px;
  background: #f9fafb;
}

.features-grid-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.features-grid-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.features-grid-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 0 auto 48px;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.feature-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}

/* COMING SOON SECTION */
.coming-soon-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.coming-soon-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.coming-soon-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.coming-soon-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 48px;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.timeline-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.timeline-badge {
  font-size: 20px;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 20px;
  display: inline-block;
}

.timeline-list {
  list-style: none;
  padding: 0;
}

.timeline-list li {
  font-size: 16px;
  color: #4b5563;
  padding: 10px 0;
  line-height: 1.6;
}

.coming-soon-cta {
  margin-top: 40px;
}

.coming-soon-question {
  font-size: 18px;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 16px;
}

/* COMPARISON SECTION */
.comparison-section {
  padding: 80px 24px;
  background: #ffffff;
}

.comparison-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.comparison-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.comparison-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 0 auto 48px;
  border-radius: 2px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 32px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: #f9fafb;
}

.comparison-table th {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  border-bottom: 2px solid #e5e7eb;
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: #4b5563;
  text-align: center;
  border-bottom: 1px solid #f3f4f6;
}

.comparison-feature-col {
  text-align: left !important;
  font-weight: 600;
  color: #1f2937;
}

.comparison-highlight-col {
  background: #eff6ff;
  font-weight: 600;
  color: #1f2937;
}

.comparison-table thead .comparison-highlight-col {
  background: #3b82f6;
  color: #ffffff;
}

.comparison-price-row {
  background: #f9fafb;
}

.comparison-price-row .comparison-highlight-col {
  background: #dbeafe;
}

.comparison-tagline {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  margin-top: 32px;
}

/* FINAL CTA SECTION */
.final-cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.final-cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.final-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.final-cta-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.final-cta-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.final-cta-benefit {
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.final-cta-button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 24px;
  display: block;
}

.final-cta-demo {
  font-size: 15px;
  color: #6b7280;
}

.final-cta-demo-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.final-cta-demo-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  background: #1f2937;
  padding: 48px 24px;
  color: #ffffff;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 14px;
}

/* FOOTER CTA */
.footer-cta {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 24px;
  text-align: center;
}

.footer-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.footer-cta-subtitle {
  font-size: 20px;
  color: #dbeafe;
  margin-bottom: 32px;
}

.footer-cta-note {
  color: #dbeafe;
  font-size: 14px;
  margin-top: 16px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .feature-container,
  .feature-container-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-container-reverse .feature-content,
  .feature-container-reverse .feature-image {
    order: unset;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .feature-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-section {
    padding: 60px 20px;
  }

  .feature-title {
    font-size: 28px;
  }

  .feature-description {
    font-size: 16px;
  }

  .feature-icon {
    font-size: 48px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-pipeline {
    flex-direction: column;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
  }

  .deal-stats {
    grid-template-columns: 1fr;
  }

  .footer-cta-title {
    font-size: 32px;
  }

  .footer-cta-subtitle {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-showcase {
    gap: 12px;
  }

  .mobile-phone {
    padding: 8px;
  }

  .phone-screen {
    width: 100px;
    height: 200px;
    font-size: 32px;
  }

  .mobile-phone:nth-child(2) {
    transform: scale(1.05);
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

  .final-cta-box {
    padding: 40px 24px;
  }

  .final-cta-title {
    font-size: 28px;
  }

  .final-cta-benefits {
    grid-template-columns: 1fr;
  }

  .podium {
    gap: 8px;
    padding: 10px;
  }

  .podium-place {
    min-width: 80px;
    padding: 16px 12px;
  }

  .podium-first {
    height: 120px;
  }

  .podium-second {
    height: 95px;
  }

  .podium-third {
    height: 75px;
  }

  .chart-bars {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .feature-title {
    font-size: 24px;
  }

  .feature-nav-container {
    gap: 20px;
  }

  .feature-nav-link {
    font-size: 13px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-grid-title,
  .coming-soon-title,
  .comparison-title {
    font-size: 28px;
  }

  .mobile-showcase {
    flex-direction: column;
    gap: 16px;
  }

  .mobile-phone:nth-child(2) {
    transform: scale(1);
  }

  .comparison-tagline {
    font-size: 18px;
  }
}
