/* =============================================
   CSS VARIABLES — Digi Admyzer Design System
   ============================================= */
:root {
  --primary: #61CE70;
  --primary-dark: #4ab85a;
  --primary-light: color-mix(in srgb, var(--primary) 12%, transparent);
  --secondary: #111827;
  --secondary-light: #1f2937;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --font-heading: 'Oswald', sans-serif;
  --font-sub: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.section-label {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-family: var(--font-sub);
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
  background: var(--white);
  color: var(--text-primary);
}

section.tight {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 35%, transparent);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline-dark:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Force visibility of animated elements inside the Elementor editor */
.elementor-editor-active .animate-on-scroll {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
