@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&family=Inter:wght@400;600&display=swap');

:root {
  --primary: #3F9B8F;
  --primary-dark: #2d7269;
  --dark: #121418;
  --light-gray: #f4f7f6;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --card-bg: #1e2126;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* Grid Background */
.page-wrapper {
  background-image:
    radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  min-height: 100vh;
}

/* Header */
.main-header {
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.header-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.logo img {
  height: 38px;
}

.accent-text {
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.desktop-nav a:hover {
  color: white;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 22px;
  border-radius: 6px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63, 155, 143, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.highlight {
  color: var(--primary);
  font-style: italic;
}

p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 48px;
}

/* Buttons Stack */
.action-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.primary-action {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 24px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  box-shadow: 0 10px 0px var(--primary-dark);
  transition: 0.2s;
}

.primary-action:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0px var(--primary-dark);
}

.secondary-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  text-decoration: none;
  color: white;
  padding: 14px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.social-link.wa:hover {
  border-color: #25D366;
  color: #25D366;
}

.social-link.yt:hover {
  border-color: #FF0000;
  color: #FF0000;
}

/* Visual Side */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  border-left: 4px solid var(--primary);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
}

/* Mobile Navigation */
.menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.nav-overlay.active {
  transform: translateX(0);
}

.overlay-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.overlay-links a {
  font-size: 32px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}

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

  .hero-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .primary-action {
    width: 100%;
  }

  .secondary-actions {
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  .hero {
    padding: 40px 0;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}


/* Social Buttons - Now Always Colored */
.social-link {
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, filter 0.2s;
}

/* WhatsApp Brand Color Always Visible */
.social-link.wa {
  background: rgba(37, 211, 102, 0.15);
  /* Light tint for background */
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

/* YouTube Brand Color Always Visible */
.social-link.yt {
  background: rgba(255, 0, 0, 0.1);
  /* Light tint for background */
  color: #FF0000;
  border-color: rgba(255, 0, 0, 0.3);
}

.social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}