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

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #fb923c;
  --accent: #fb923c;
  --gradient-primary: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  --gradient-hero: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-hero: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-orange: 0 4px 14px 0 rgba(249, 115, 22, 0.25);
  --shadow-orange-hover: 0 8px 20px 0 rgba(249, 115, 22, 0.35);
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 0.25rem;
}

.nav-link:hover {
  color: var(--primary) !important;
  background-color: rgba(249, 115, 22, 0.08);
}

.activity-widget-footer {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.activity-widget-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.activity-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border-light);
}

.activity-item-footer:last-child {
  border-bottom: none;
}

.activity-label-footer {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.8125rem;
}

.activity-value-footer {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-domain {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}


.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-orange);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  font-size: 0.95rem;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange-hover);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  border-radius: 14px;
}

.hero {
  padding: 140px 0 120px;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(5deg); }
}

.hero-badge {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.hero-title {
  font-weight: 900;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
  text-align: center;
}

.hero-subtitle {
  font-size: 1.3125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 750px;
  font-weight: 400;
}

.section-title {
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1875rem;
  line-height: 1.75;
  max-width: 720px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
}

.card-soft {
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  background-color: var(--bg-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card-soft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-soft:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-soft:hover::before {
  opacity: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  color: white;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px 0 rgba(249, 115, 22, 0.4);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  background: rgba(249, 115, 22, 0.08);
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 600;
  border: 1px solid rgba(249, 115, 22, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pill:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-primary);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
}

@keyframes pulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.badge-mini {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  display: inline-block;
  width: fit-content;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 1rem;
  width: fit-content;
}

.example-routine {
  background: rgba(249, 115, 22, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.example-routine-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.example-routine-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

.example-script {
  background: rgba(249, 115, 22, 0.08);
  border-left: 4px solid var(--primary-dark);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.example-script-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.example-script-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

section {
  padding: 120px 0;
}

section.bg-white {
  background-color: var(--bg-primary);
}

.card h5 {
  font-weight: 800;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.card ul {
  padding-left: 1.5rem;
}

.card ul li {
  margin-bottom: 0.625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card ul li::marker {
  color: var(--primary);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.check-icon::before {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid rgba(249, 115, 22, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.card-icon::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid rgba(249, 115, 22, 0.3);
}

.progress-bar-container {
  background: rgba(249, 115, 22, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-right: 1rem;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  width: 100%;
  transition: width 0.3s ease;
}

.progress-percent {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.footer {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 3rem 0;
}

code {
  background: rgba(249, 115, 22, 0.12);
  padding: 0.375rem 0.625rem;
  border-radius: 8px;
  font-size: 0.875em;
  color: var(--primary);
  font-weight: 600;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

hr {
  border-color: var(--border-light);
  opacity: 0.6;
  margin: 1.5rem 0;
}

strong {
  font-weight: 700;
  color: var(--text-primary);
}

h6 {
  font-weight: 700;
  color: var(--text-primary);
}

.text-muted {
  color: var(--text-secondary) !important;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
  outline: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.numbered-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.numbered-list-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.numbered-list-content h5 {
  margin-bottom: 0.25rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

.testimonial-card {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-weight: 900;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.testimonial-date {
  color: var(--text-secondary);
}

.testimonial-count {
  color: var(--primary);
  font-weight: 500;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 0.75rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 1rem 0;
}

.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  border-radius: 50px;
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}


@media (max-width: 768px) {
  .floating-cta {
    bottom: 1.5rem;
    right: 1.5rem;
    left: 1.5rem;
    width: auto;
  }
  
  .hero {
    padding: 100px 0 80px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.0625rem;
  }
  
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-right: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.filter-btn:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}

.example-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.example-item.hidden {
  display: none;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.tag-cloud-scroll-wrapper {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin-left: calc(-50vw + 50%);
  padding: 1.5rem 0;
}

.tag-cloud-scroll {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: fit-content;
  animation: scroll-tags 60s linear infinite;
  white-space: nowrap;
}

.tag-cloud-item {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.tag-cloud-item:hover {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
  color: var(--primary);
}

@keyframes scroll-tags {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

