/* ===== VARIABLES ===== */
:root {
  --background: #0d1117;
  --foreground: #ffffff;
  --card: #161b22;
  --card-foreground: #ffffff;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --secondary: #1e2530;
  --muted: #1e2530;
  --muted-foreground: #8b949e;
  --border: #30363d;
  --input: #21262d;
  --radius: 0.75rem;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  color: var(--primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #2563eb;
}

.btn-outline {
  background-color: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(48, 54, 61, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.header-logo picture,
.header-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-right: 2rem;
}

.header-nav a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--foreground);
}

.header-nav a.active {
  color: var(--primary);
}

.header-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-btn {
  display: flex;
  color: var(--foreground);
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--foreground);
}

.mobile-menu a.active {
  color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 6rem;
  /* padding-bottom: 4rem; */
  overflow: hidden;
}

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

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-text p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.avatars {
  display: flex;
}

.avatars span,
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), var(--primary));
  border: 2px solid var(--background);
  margin-left: -12px;
  object-fit: cover;
}

.avatars span:first-child,
.avatars img:first-child {
  margin-left: 0;
}

.proof-text p {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.proof-text .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.proof-text .rating svg {
  width: 14px;
  height: 14px;
  fill: #facc15;
  color: #facc15;
}

.proof-text .rating span {
  color: var(--primary);
  margin-left: 0.25rem;
}

.hero-image img {
  max-width: 500px;
  width: 100%;
}

/* ===== SOCIAL PLATFORMS ===== */
.platforms {
  padding: 4rem 0;
}

.platforms h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.platforms h2 span {
  color: var(--primary);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.platform-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.platform-icon svg {
  width: 20px;
  height: 20px;
}

.platform-card span {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.platform-card:hover span {
  color: var(--primary);
}

/* Platform colors */
.platform-instagram {
  background: linear-gradient(135deg, #833AB4, #E4405F, #FCAF45);
}

.platform-tiktok {
  background-color: #000000;
}

.platform-youtube {
  background-color: #FF0000;
}

.platform-facebook {
  background-color: #1877F2;
}

.platform-twitch {
  background-color: #9146FF;
}

.platform-kwai {
  background-color: #FF7300;
}

.platform-twitter {
  background-color: #1DA1F2;
}

.platform-google {
  background-color: #0A66C2;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: 4rem 0;
  background-color: rgba(22, 27, 34, 0.5);
}

.reviews h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.reviews h2 span {
  color: var(--primary);
}

.reviews>.container>p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-5px);
}

.review-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  color: rgba(59, 130, 246, 0.2);
  transition: color 0.3s ease;
}

.review-card:hover .quote-icon {
  color: rgba(59, 130, 246, 0.4);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.review-info h4 {
  font-weight: 600;
}

.review-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: #facc15;
  color: #facc15;
}

.review-stars svg.empty {
  fill: var(--muted);
  color: var(--muted);
}

.review-card>p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 4rem 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-it-works h2 span {
  color: var(--primary);
}

.how-it-works>.container>p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-5px) scale(1.02);
}

.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.step-card:hover .step-icon {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.step-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.step-icon.purple {
  background: linear-gradient(135deg, #a855f7, #9333ea);
}

.step-icon.pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.step-icon.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.step-icon.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.step-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card>p {
  color: var(--muted-foreground);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 4rem 0;
  background-color: rgba(22, 27, 34, 0.5);
}

.faq h2 {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq h2 span {
  color: var(--primary);
}

.faq>.container>p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item:hover .faq-question svg {
  color: var(--primary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand>p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.auth-container {
  width: 100%;
  max-width: 400px;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.auth-back:hover {
  color: var(--foreground);
}

.auth-back svg {
  width: 18px;
  height: 18px;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
}

.auth-header h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--muted-foreground);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group .label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-group .label-row a {
  color: var(--primary);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.form-group .label-row a:hover {
  color: #2563eb;
}

.input-group {
  position: relative;
}

.input-group svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
}

.input-group input {
  width: 100%;
  height: 48px;
  padding: 0 12px 0 44px;
  background-color: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.input-group input::placeholder {
  color: var(--muted-foreground);
}

.input-group .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  padding: 4px;
}

.input-group .toggle-password:hover {
  color: var(--foreground);
}

.input-group .toggle-password svg {
  position: static;
  transform: none;
}

/* Alerts Forms */

.password-rules {
  margin-top: 10px;
  font-size: 13px;
}

.password-rules p {
  margin: 4px 0;
  color: #999;
  transition: .2s;
}

.password-rules p.valid {
  color: #22c55e;
}

.password-rules p.invalid {
  color: #ef4444;
}

.alert-register {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--foreground);
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-content: center;
  text-align: center;
  padding: 10px;
}

.alert-register-text {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.alert-register.success {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

/* Checkbox Styles */
.remember-me {
  display: flex;
  align-items: flex-start;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--foreground-secondary);
  user-select: none;
  gap: 5px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: var(--background-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
  border-color: var(--foreground-tertiary);
}

.checkbox-container input:checked~.checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-weight: 500;
}

.auth-btn {
  width: 100%;
  height: 48px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.auth-btn:hover {
  background-color: #2563eb;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border);
}

.auth-divider span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.social-buttons {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  color: var(--foreground);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: var(--muted);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted-foreground);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-footer a:hover {
  color: #2563eb;
}

.auth-footer p+p {
  margin-top: 1rem;
}

/* Success State */
.success-state {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.success-state h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-state>p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.success-state .email-highlight {
  color: var(--foreground);
  font-weight: 500;
}

.success-state .retry-link {
  color: var(--primary);
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.success-state .retry-link:hover {
  color: #2563eb;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Animation delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

/* Initially hidden for animation */
[class*="animate-"] {
  opacity: 0;
  will-change: opacity, transform;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [class*="animate-"],
  .scroll-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 6rem 0 4rem;
  min-height: calc(100vh - 200px);
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary);
}

.back-link svg {
  width: 18px;
  height: 18px;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-header h1 span {
  color: var(--primary);
}

.legal-header>p {
  color: var(--muted-foreground);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.legal-section:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.75rem;
  color: var(--foreground);
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.legal-section ul li strong {
  color: var(--foreground);
}

.contact-info {
  background-color: var(--muted);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Notice Box */
.notice-box {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.notice-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.notice-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.notice-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.notice-content p strong {
  color: var(--foreground);
}

/* Steps List */
.steps-list {
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-num {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

/* Contact Highlight */
.contact-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-highlight svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-highlight p {
  margin: 0;
}

.contact-highlight p:first-child {
  margin-bottom: 0.25rem;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

@media (max-width: 640px) {
  .legal-header h1 {
    font-size: 1.875rem;
  }

  .notice-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .legal-section {
    padding: 1.25rem;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) {
  .platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero {
    padding-top: 8rem;
    /* padding-bottom: 6rem; */
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    flex: 1;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .hero-text p {
    margin: 0 0 2rem;
  }

  .social-proof {
    justify-content: flex-start;
  }

  .hero-image {
    flex: 1;
  }

  .platforms h2,
  .reviews h2,
  .how-it-works h2,
  .faq h2 {
    font-size: 2.25rem;
  }

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

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .platforms-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted-foreground);
}
/* Maintenance state */
.site-offline-banner {
  padding: 5.25rem 0 0.75rem;
  background: rgba(218, 54, 51, 0.12);
  border-bottom: 1px solid rgba(218, 54, 51, 0.28);
}

.site-offline-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.site-offline-banner strong {
  color: #ff7b72;
}

.site-offline-banner span {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.auth-maintenance-alert {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(218, 54, 51, 0.28);
  background: rgba(218, 54, 51, 0.12);
  text-align: center;
}

.auth-maintenance-alert strong {
  color: #ff7b72;
}

.auth-maintenance-alert span {
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

/* Home social proof refinement */
.hero {
  padding-top: 7rem;
}

.hero .container {
  padding-left: clamp(1rem, 4vw, 2.5rem);
  padding-right: clamp(1rem, 4vw, 2.5rem);
}

.social-proof {
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.avatars {
  display: flex;
  flex-shrink: 0;
  padding-left: 0.5rem;
}

.avatars img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--background);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.28);
  margin-left: -12px;
  background: var(--card);
}

.avatars img:first-child {
  margin-left: 0;
}

.proof-text p {
  max-width: none;
  margin: 0 0 0.35rem;
  color: var(--foreground);
}

@media (max-width: 640px) {
  .hero {
    padding-top: 5.5rem;
    /* padding-bottom: 3rem; */
  }

  .social-proof {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .avatars {
    justify-content: center;
    padding-left: 0;
  }

  .proof-text .rating {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Active platform list */
.active-platforms-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .active-platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (min-width: 1024px) {
  .active-platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}

/* SEO landing content */
.seo-intro,
.service-keywords,
.seo-content-band,
.seo-related {
  padding: 4rem 0;
}

.seo-intro {
  background: rgba(22, 27, 34, 0.45);
  border-top: 1px solid rgba(48, 54, 61, 0.55);
  border-bottom: 1px solid rgba(48, 54, 61, 0.55);
}

.seo-intro-grid,
.seo-hero-grid,
.seo-content-grid {
  display: grid;
  gap: 1.5rem;
}

.seo-kicker {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.seo-intro-copy h2,
.section-heading h2,
.seo-copy-block h2,
.seo-related h2,
.seo-hero-copy h1 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.18;
  margin-bottom: 1rem;
}

.seo-intro-copy p,
.section-heading p,
.seo-copy-block p,
.seo-hero-copy p,
.seo-hero-panel li,
.service-keyword-card p {
  color: var(--muted-foreground);
}

.seo-term-cloud {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.seo-term-cloud a,
.service-keyword-card a,
.seo-related-card {
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.seo-term-cloud a {
  border-radius: 999px;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 0.9rem;
}

.seo-term-cloud a:hover,
.service-keyword-card:hover,
.seo-related-card:hover {
  border-color: rgba(59, 130, 246, 0.55);
  transform: translateY(-2px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.service-keyword-grid,
.seo-related-grid {
  display: grid;
  gap: 1rem;
}

.service-keyword-card,
.seo-copy-block,
.seo-hero-panel,
.seo-related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.service-keyword-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-keyword-card a {
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
}

.seo-page {
  padding-top: 5.5rem;
}

.seo-hero {
  padding: 4rem 0;
}

.seo-hero-copy {
  align-self: center;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.seo-hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.seo-hero-panel ul {
  display: grid;
  gap: 0.75rem;
}

.seo-hero-panel li {
  position: relative;
  padding-left: 1.25rem;
}

.seo-hero-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.seo-content-band,
.seo-related {
  background: rgba(22, 27, 34, 0.45);
}

.seo-copy-block p + p {
  margin-top: 0.8rem;
}

.seo-related-card {
  color: var(--foreground);
  display: grid;
  gap: 0.35rem;
}

.seo-related-card span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-site-actions {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-action {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.floating-action svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-top {
  background: var(--primary);
}

@media (min-width: 768px) {
  .seo-intro-grid,
  .seo-hero-grid,
  .seo-content-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .service-keyword-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .seo-intro,
  .service-keywords,
  .seo-content-band,
  .seo-related,
  .seo-hero {
    padding: 3rem 0;
  }

  .service-keyword-card,
  .seo-copy-block,
  .seo-hero-panel,
  .seo-related-card {
    border-radius: 0.75rem;
  }

  .floating-site-actions {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .floating-action {
    width: 48px;
    height: 48px;
  }
}