* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --tiktok-gradient: linear-gradient(135deg, #000000 0%, #ff0050 100%);
  --instagram-gradient: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  --twitter-gradient: linear-gradient(135deg, #1da1f2 0%, #0d95e8 100%);
  --youtube-gradient: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  --winner-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --bg-dark: #f5f5f7;
  --bg-darker: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(
      ellipse at top,
      rgba(102, 126, 234, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom,
      rgba(118, 75, 162, 0.15) 0%,
      transparent 50%
    );
  padding: 80px 20px;
  overflow: hidden;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

.icon svg {
  width: 40px;
  height: 40px;
  fill: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon.tiktok {
  background: var(--tiktok-gradient);
  animation-delay: 0s;
}

.icon.instagram {
  background: var(--instagram-gradient);
  animation-delay: 0.2s;
}

.icon.twitter {
  background: var(--twitter-gradient);
  animation-delay: 0.4s;
}

.icon.youtube {
  background: var(--youtube-gradient);
  animation-delay: 0.6s;
}

.icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--winner-gradient);
  box-shadow: 0 4px 15px rgba(56, 239, 125, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.float {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.float-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.float-4 {
  top: 40%;
  right: 30%;
  animation-delay: 3s;
}

.float-5 {
  bottom: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Comparison Section */
.comparison-section {
  padding: 80px 20px;
  background-color: #f3f3fd;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
  }
}

.gradient-text-orange {
  background-image: linear-gradient(to right, #ffaa04, #ff5c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 20px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 1440px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
  min-width: 800px;
}

.comparison-header {
  display: contents;
}

.comparison-row {
  display: contents;
}

.comparison-header > *,
.comparison-row > * {
  padding: 18px 15px;
}

.comparison-header > *:not(:first-child),
.comparison-row > *:not(:first-child) {
  border-left: 1px solid var(--border-color);
}

.comparison-row:not(:last-child) > * {
  border-bottom: 1px solid var(--border-color);
}

.comparison-header > * {
  border-bottom: 2px solid var(--border-color);
}

.header-cell {
  padding: 20px 15px;
  background: rgba(0, 0, 0, 0.02);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.feature-col {
  text-align: left;
}

.service-col {
  text-align: center;
}

.winner-col {
  background: linear-gradient(
    135deg,
    rgba(17, 153, 142, 0.08) 0%,
    rgba(56, 239, 125, 0.08) 100%
  );
  border-left: 3px solid #38ef7d;
  border-right: 3px solid #38ef7d;
  position: relative;
}

.winner-col.header-cell {
  background: linear-gradient(
    135deg,
    rgba(17, 153, 142, 0.12) 0%,
    rgba(56, 239, 125, 0.12) 100%
  );
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text-primary);
}

.service-name img {
  width: 40px;
  height: 40px;
}

.badge-small {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--winner-gradient);
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
}

.visit-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.feature-name {
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  display: flex;
  align-items: center;
}

.winner-cell {
  background: linear-gradient(
    135deg,
    rgba(17, 153, 142, 0.06) 0%,
    rgba(56, 239, 125, 0.06) 100%
  );
  color: var(--text-primary);
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.loser-cell {
  background: rgba(220, 53, 69, 0.06);
  color: var(--text-secondary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.winner-cell .cell-content,
.loser-cell .cell-content {
  flex: 1;
  line-height: 1.5;
}

.check-icon {
  color: #38ef7d;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
  animation: checkPop 0.3s ease;
}

.cross-icon {
  color: #dc3545;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
  animation: crossPop 0.3s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes crossPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.cell-content {
  line-height: 1.5;
}

.action-row > * {
  padding: 25px 15px;
}

.action-row .feature-name {
  border: none;
}

.visit-btn-large {
  display: inline-block;
  padding: 12px 30px;
  background-image: linear-gradient(to right, #ffa567, #ff4330);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-duration: 0.25s;
  text-align: center;
  width: 100%;
  max-width: 200px;
}

.visit-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 67, 48, 0.5);
}

.disclaimer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: radial-gradient(
    ellipse at center,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-duration: 0.25s;
  display: inline-block;
}

.cta-btn.primary {
  background-image: linear-gradient(to right, #ffa567, #ff4330);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 67, 48, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 67, 48, 0.6);
}

.cta-btn.secondary {
  background-image: linear-gradient(to right, #ffa567, #ff4330);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 67, 48, 0.4);
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 67, 48, 0.6);
}

/* Footer */
.footer {
  padding: 30px 20px;
  text-align: center;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Mobile Comparison Styles */
.mobile-comparison {
  display: none;
}

.mobile-feature-block {
  margin-bottom: 30px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-feature-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  text-align: center;
}

.mobile-service-item {
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mobile-service-item:last-child {
  margin-bottom: 0;
}

.mobile-service-item.winner {
  background: linear-gradient(
    135deg,
    rgba(17, 153, 142, 0.08) 0%,
    rgba(56, 239, 125, 0.08) 100%
  );
  border-left: 3px solid #38ef7d;
}

.mobile-service-item.loser {
  background: rgba(220, 53, 69, 0.08);
  border-left: 3px solid #dc3545;
}

.mobile-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.mobile-service-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.mobile-service-name img {
  width: 30px;
  height: 30px;
}

.mobile-check-icon {
  color: #38ef7d;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mobile-cross-icon {
  color: #dc3545;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mobile-service-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 5px;
}

.mobile-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.mobile-visit-btn {
  display: block;
  padding: 16px 30px;
  background-image: linear-gradient(to right, #ffa567, #ff4330);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 67, 48, 0.4);

  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.mobile-visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.mobile-visit-btn.secondary:hover {
  background: rgba(220, 53, 69, 0.4);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 968px) {
  .comparison-table-wrapper {
    padding: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-grid {
    font-size: 0.9rem;
    min-width: 700px;
  }

  .comparison-header > *,
  .comparison-row > * {
    padding: 14px 10px;
  }

  .check-icon,
  .cross-icon {
    font-size: 1.1rem;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .desktop-table {
    display: none;
  }

  .mobile-comparison {
    display: block;
  }

  .comparison-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .mobile-feature-block {
    margin-bottom: 25px;
    padding: 18px;
  }

  .mobile-feature-name {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .mobile-service-item {
    padding: 12px;
    margin-bottom: 12px;
  }

  .mobile-service-name {
    font-size: 0.95rem;
  }

  .mobile-service-content {
    font-size: 0.9rem;
  }
}
