:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --bg-light: #ffffff;
  --bg-lighter: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #f1f5f9;
  --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --text-dark: #1e293b;
  --text-gray: #475569;
  --text-muted: #64748b;
  --text-light: #050505;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --gradient-hero: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3.5rem;
  --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.15);
  --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.2);
  --shadow-lg: 0 8px 32px rgba(37, 99, 235, 0.25);
  --shadow-xl: 0 16px 48px rgba(37, 99, 235, 0.3);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-lighter);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

h2 {
  font-size: clamp(1.75rem, 4vw, var(--font-size-2xl));
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  animation: expand-width 0.8s ease-out;
}

h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
}

h4 {
  font-size: var(--font-size-lg);
  color: var(--text-dark);
}

p {
  color: var(--text-gray);
  font-size: var(--font-size-md);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-base);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-dark {
  background: #e0f2fe;
  color: var(--text-dark);
}

.section-darker {
  background: #f0f9ff;
  color: var(--text-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--text-dark);
}

.section-light p {
  color: var(--text-gray);
}

.section-gradient {
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(37, 99, 235, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(139, 92, 246, 0.08), transparent);
  pointer-events: none;
}

.text-center {
  text-align: center;
}

/* HEADER  */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  animation: slide-down 0.5s ease-out;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.site-header__inner,
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.2rem var(--spacing-lg);
}

.logo {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--primary-color);
  transition: all var(--transition-bounce);
}

.header.scrolled .logo {
  color: var(--primary-color);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 95px;
  width: auto;
  max-width: 250px;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
  animation: float 3s ease-in-out infinite;
  mix-blend-mode: normal;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-menu a {
  color: rgb(6, 6, 6);
  font-weight: 500;
  position: relative;
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-base);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.7);
}

.header.scrolled .nav-menu a {
  color: var(--text-dark);
  text-shadow: none;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.home-page .header:not(.scrolled) .nav-menu a {
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.home-page .header:not(.scrolled) .nav-menu a:hover,
.home-page .header:not(.scrolled) .nav-menu a.active {
  color: var(--primary-color);
  text-shadow: none;
}

.home-page .header.scrolled .nav-menu a {
  color: var(--text-dark);
  text-shadow: none;
}

.home-page .header:not(.scrolled) .menu-toggle {
  color: #fff;
}

.home-page .header.scrolled .menu-toggle {
  color: var(--primary-color);
}

.contact-page .header:not(.scrolled) .nav-menu a {
  color: #f8fafc;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.contact-page .header:not(.scrolled) .nav-menu a:hover,
.contact-page .header:not(.scrolled) .nav-menu a.active {
  color: #93c5fd;
  text-shadow: none;
}

.contact-page .header:not(.scrolled) .menu-toggle {
  color: #f8fafc;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: var(--font-size-lg);
  cursor: pointer;
  transition: transform var(--transition-bounce);
}

.header.scrolled .menu-toggle {
  color: var(--primary-color);
}

.menu-toggle:hover {
  transform: scale(1.2) rotate(90deg);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 600px;
  padding: var(--spacing-xl);
  margin-left: 0;
}

.hero-content h1 {
  margin-bottom: var(--spacing-lg);
  animation: fade-in-up 0.8s ease-out;
  -webkit-text-fill-color: white !important;
  color: white !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  background: none !important;
}

.hero-tagline {
  font-size: var(--font-size-md);
  color: white !important;
  margin: 0 0 var(--spacing-xl);
  animation: fade-in-up 0.8s ease-out 0.2s both;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: var(--spacing-md);
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

/*  BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* GRID  */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

/*CARDS*/
.card {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-top-color: var(--secondary-color);
}

.card i {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  display: block;
  animation: bounce-in 0.6s ease-out;
}

.card:hover i {
  animation: pulse-icon 0.6s ease-in-out;
}

.card h4 {
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.card p {
  color: var(--text-gray);
  font-size: var(--font-size-sm);
}

.card ul {
  list-style: none;
  margin-top: var(--spacing-md);
}

.card ul li {
  color: var(--text-gray);
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-lg);
  position: relative;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/*  STATS */
.stats {
  background: var(--gradient-primary);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  text-align: center;
}

.stat-item h3 {
  font-size: var(--font-size-3xl);
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* TESTIMONIALS */
.testimonial {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-bounce);
}

.testimonial:hover {
  transform: translateX(10px);
  border-left-color: var(--secondary-color);
  box-shadow: var(--shadow-lg);
}

.testimonial p {
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-author strong {
  color: var(--text-dark);
  display: block;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: var(--font-size-xs);
}

/* FORMS  */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  font-weight: 600;
}

.form-group .required {
  color: #ef4444;
}

input,
textarea,
select {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  background: var(--bg-light);
  color: var(--text-dark);
  transition: all var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.success-message {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-md);
  animation: slide-in-right 0.5s ease-out;
}

/* CONTACT CARDS  */
.contact-card {
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-bounce);
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.contact-card h4 {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-card h4 i {
  color: var(--primary-color);
}

.contact-card a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--primary-light);
}

/* ——— Contact page (premium UI) ——— */
.contact-page .contact-hero--premium {
  position: relative;
  overflow: hidden;
  padding: calc(var(--spacing-3xl) + 4.5rem) 0 var(--spacing-3xl);
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 42%, #312e81 100%);
  color: #e2e8f0;
}

.contact-hero__aurora {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse 50% 45% at 20% 30%, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 20%, rgba(139, 92, 246, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 90%, rgba(37, 99, 235, 0.35), transparent 55%);
  animation: contact-aurora-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

@keyframes contact-aurora-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-3%, 2%) rotate(2deg); }
}

.contact-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-hero__copy {
  max-width: 36rem;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bae6fd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(8px);
}

.contact-page .contact-hero--premium .contact-hero__title {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
}

.contact-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.7;
  margin: 0 0 var(--spacing-xl);
}

.contact-hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 0;
  margin: 0;
}

.contact-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
}

.contact-hero__chips i {
  color: #4ade80;
  font-size: 0.75rem;
}

.contact-hero__art {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.85;
  pointer-events: none;
}

.contact-hero__orb--a {
  width: 180px;
  height: 180px;
  background: #38bdf8;
  top: 5%;
  right: 10%;
}

.contact-hero__orb--b {
  width: 140px;
  height: 140px;
  background: #a78bfa;
  bottom: 15%;
  left: 5%;
}

.contact-hero__orb--c {
  width: 100px;
  height: 100px;
  background: #3b82f6;
  top: 40%;
  left: 30%;
}

.contact-hero__float-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
  transition: transform 0.5s var(--transition-base);
}

.contact-hero__float-card:hover {
  transform: rotate(-2deg) translateY(-4px);
}

.contact-hero__float-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.contact-hero__float-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.contact-hero__float-card-text strong {
  color: #fff;
  font-size: 1rem;
}

.contact-hero__float-card-text span {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.85);
}

.contact-main {
  position: relative;
  padding: var(--spacing-3xl) 0 calc(var(--spacing-3xl) + 1rem);
  background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 45%, #f1f5f9 100%);
}

.contact-main__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    radial-gradient(at 10% 20%, rgba(99, 102, 241, 0.08) 0, transparent 45%),
    radial-gradient(at 90% 10%, rgba(14, 165, 233, 0.1) 0, transparent 40%),
    radial-gradient(at 50% 100%, rgba(139, 92, 246, 0.06) 0, transparent 50%);
  pointer-events: none;
}

.contact-main__inner {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-form-column {
  min-width: 0;
}

.contact-alerts:empty {
  display: none;
}

.contact-alert {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(5, 150, 105, 0.1) 100%);
  color: #065f46;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

.contact-form-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 24px 48px -24px rgba(30, 64, 175, 0.2),
    0 0 0 1px rgba(148, 163, 184, 0.12);
}

.contact-form-card__head {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.contact-form-card__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #0891b2 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 28px -8px rgba(37, 99, 235, 0.55);
}

.contact-form-card__head-text {
  min-width: 0;
}

.contact-form-card__head-text h2 {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: #0f172a;
}

.contact-form-card__head-text h2::after {
  display: none;
}

.contact-form-card__intro {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

.contact-form .form-group {
  margin-bottom: 1.15rem;
}

.contact-form .form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.45rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-row .form-group {
  margin-bottom: 1.15rem;
}

.optional-label {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.78em;
}

.contact-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.15rem 0.85rem 0.15rem 1rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-field:focus-within {
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.contact-field--textarea {
  align-items: flex-start;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.contact-field__ic {
  flex-shrink: 0;
  width: 1.1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.contact-field__ic--textarea {
  margin-top: 0.35rem;
}

.contact-page .contact-field__input,
.contact-page .contact-field textarea.contact-field__input {
  flex: 1;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0.75rem 0.5rem 0.75rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
}

.contact-page .contact-field__input:focus,
.contact-page .contact-field textarea.contact-field__input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.contact-field--select {
  padding-right: 0.35rem;
}

.contact-field--select .contact-field__select-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.contact-field--select select {
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  font-size: 1rem;
}

.contact-field--select select:focus {
  outline: none;
  box-shadow: none;
}

.contact-field--select .contact-field__select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #64748b;
  font-size: 0.72rem;
}

.contact-page .contact-field textarea.contact-field__input {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form .contact-form-actions {
  margin-top: var(--spacing-xl);
  margin-bottom: 0;
}

.contact-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 45%, #0ea5e9 100%);
  box-shadow: 0 12px 32px -8px rgba(37, 99, 235, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(37, 99, 235, 0.65);
}

.contact-form-trust {
  text-align: center;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin: 0.85rem 0 0;
}

.contact-aside {
  animation: slide-in-right 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-aside-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 50px -20px rgba(30, 41, 59, 0.18);
}

@media (min-width: 901px) {
  .contact-aside-panel {
    position: sticky;
    top: 6.5rem;
  }
}

.contact-aside-panel__head {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-aside__title {
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.contact-aside__title::after {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.contact-aside__subtitle {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.contact-card--aside {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-left: 4px solid #3b82f6;
  border-radius: 16px;
  margin-bottom: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card--aside:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(37, 99, 235, 0.2);
}

.contact-card--aside h4 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.social-links--contact {
  margin-top: 0.5rem;
}

.social-links--contact a {
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  color: #2563eb;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.social-links--contact a:hover {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  border-color: transparent;
  transform: translateY(-3px);
}

.contact-highlight {
  margin-top: var(--spacing-md);
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(14, 165, 233, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-highlight__icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-highlight__title {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: #1e293b;
}

.contact-highlight__text {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-faq-block {
  position: relative;
  padding: var(--spacing-3xl) 0 calc(var(--spacing-3xl) + 1rem);
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #172554 100%);
  color: #cbd5e1;
  overflow: hidden;
}

.contact-faq-block__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.25), transparent),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(139, 92, 246, 0.15), transparent);
  pointer-events: none;
}

.contact-faq-block__inner {
  position: relative;
  z-index: 1;
}

.contact-faq-block__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #38bdf8;
  margin: 0 0 0.5rem;
}

.contact-faq-block__heading {
  display: block;
  width: 100%;
  margin-bottom: var(--spacing-2xl);
  text-align: center;
  color: #f8fafc;
}

.contact-faq-block__heading::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #38bdf8, #a78bfa, #818cf8);
  height: 3px;
  width: 72px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-faq-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  color: #334155;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(37, 99, 235, 0.35);
}

.contact-faq-card__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.contact-faq-card__q {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.12);
}

.contact-faq-card__a {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .contact-hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hero__copy {
    max-width: none;
  }

  .contact-hero__chips {
    justify-content: center;
  }

  .contact-hero__art {
    min-height: 220px;
    order: -1;
  }

  .contact-hero__float-card {
    margin: 0 auto;
    transform: rotate(-2deg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-page .contact-hero--premium {
    padding-top: calc(var(--spacing-3xl) + 3.5rem);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-form-card__head-text h2 {
    text-align: center;
  }
}

/*  FOOTER  */
.footer {
  background: #e0f2fe;
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  border-top: 4px solid var(--primary-color);
  color: var(--text-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.footer h4 {
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.footer p {
  color: var(--text-gray);
  font-size: var(--font-size-sm);
}

.footer a {
  display: block;
  color: var(--text-gray);
  margin-bottom: var(--spacing-xs);
  transition: all var(--transition-base);
}

.footer a:hover {
  color: var(--primary-color);
  padding-left: var(--spacing-xs);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-bounce);
  padding: 0;
}

.social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: var(--font-size-xs);
}

/* WHATSAPP BUTTON  */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-bounce);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* SCROLL ANIMATIONS */
.fade-in-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-scroll.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.animate-on-scroll {
  opacity: 0;
  transform: scale(0.9);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/*  ANIMATIONS */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes expand-width {
  from {
    width: 0;
  }

  to {
    width: 60px;
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.fade-in {
  opacity: 0;
  animation: fade-in-up 0.8s ease-out forwards;
}

/*  RESPONSIVE */
@media (max-width: 768px) {
  .header {
    padding: 0;
  }

  .site-header__inner,
  .navbar {
    padding: 0.5rem 1rem;
  }

  .logo-img {
    height: 75px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a:not(.nav-cta) {
    color: #000 !important;
    text-shadow: none !important;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
  }

  .nav-menu a:hover {
    background: #f1f5f9;
    color: var(--primary-color) !important;
    padding-left: 1.5rem;
  }

  .nav-menu a.active {
    background: var(--primary-color);
    color: white !important;
    font-weight: 600;
  }

  .nav-menu a::before {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: var(--primary-color);
    font-size: 1.75rem;
    z-index: 1001;
    padding: 0.25rem;
  }

  .header.scrolled .menu-toggle {
    color: var(--primary-color);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: var(--spacing-md);
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 1.75rem !important;
  }

  .hero-tagline {
    font-size: 1rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  h4 {
    font-size: 1.1rem !important;
  }

  .card {
    padding: var(--spacing-lg);
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }

  .footer-grid {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 0.75rem;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .logo-img {
    height: 60px;
  }

  .nav-menu {
    width: 100%;
    padding: 80px 1rem 1rem;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  .hero-content h1 {
    font-size: 1.5rem !important;
  }

  .hero-tagline {
    font-size: 0.95rem !important;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .card {
    padding: var(--spacing-md);
  }

  h2 {
    font-size: 1.35rem !important;
  }

  p {
    font-size: 0.95rem;
  }
}

/*  UTILITY CLASSES  */
.mt-4 {
  margin-top: var(--spacing-xl);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

.mb-4 {
  margin-bottom: var(--spacing-xl);
}

.pt-5 {
  padding-top: var(--spacing-3xl);
}

/* CRM Automations service page — desktop overlay only (mobile drawer uses #000 links) */
@media (min-width: 769px) {
  .crm-automations-page .header:not(.scrolled) .nav-menu a:not(.nav-cta) {
    color: rgba(255, 255, 255, 0.92);
  }

  .crm-automations-page .header:not(.scrolled) .nav-menu a:not(.nav-cta):hover,
  .crm-automations-page .header:not(.scrolled) .nav-menu a.active:not(.nav-cta) {
    color: #fff;
  }
}

.crm-automations-page .header:not(.scrolled) .menu-toggle {
  color: #fff;
}

.crm-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--spacing-3xl) + 4.5rem) 0 var(--spacing-3xl);
  background: linear-gradient(145deg, #0f172a 0%, #1e3a8a 42%, #312e81 100%);
  color: #e2e8f0;
}

.crm-hero__aurora {
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(ellipse 50% 45% at 20% 30%, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 20%, rgba(139, 92, 246, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 90%, rgba(37, 99, 235, 0.35), transparent 55%);
  animation: contact-aurora-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.crm-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.crm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bae6fd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-lg);
}

.crm-automations-page .crm-hero__title {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  margin-bottom: var(--spacing-md);
}

.crm-hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(226, 232, 240, 0.92);
  line-height: 1.7;
  margin: 0 0 var(--spacing-xl);
}

.crm-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.crm-dashboard {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.crm-dashboard__header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
}

.crm-dashboard__dot:nth-child(1) { background: #f87171; }
.crm-dashboard__dot:nth-child(2) { background: #fbbf24; }
.crm-dashboard__dot:nth-child(3) { background: #4ade80; }

.crm-dashboard__title {
  margin-left: auto;
  font-size: 0.8rem;
  color: #94a3b8;
}

.crm-dashboard__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}

.crm-dashboard__sources span {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.crm-dashboard__pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}

.crm-dashboard__stage {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.crm-dashboard__stage small {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.crm-dashboard__stage strong {
  display: block;
  font-size: 1.25rem;
  color: #f8fafc;
  margin-top: 0.15rem;
}

.crm-dashboard__stage--new { border-top: 2px solid #38bdf8; }
.crm-dashboard__stage--qualified { border-top: 2px solid #a78bfa; }
.crm-dashboard__stage--proposal { border-top: 2px solid #fbbf24; }
.crm-dashboard__stage--won { border-top: 2px solid #4ade80; }

.crm-dashboard__feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.crm-dashboard__event {
  font-size: 0.8rem;
  color: #cbd5e1;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.15);
  animation: crm-event-pulse 4s ease-in-out infinite;
}

.crm-dashboard__event:nth-child(2) { animation-delay: 1.3s; }
.crm-dashboard__event:nth-child(3) { animation-delay: 2.6s; }

.crm-dashboard__event i {
  color: #60a5fa;
  margin-right: 0.35rem;
}

@keyframes crm-event-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.crm-prose h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.crm-prose.text-center h2,
.text-center .crm-stats__heading {
  display: block;
  width: 100%;
}

.crm-lead {
  font-size: var(--font-size-md);
  color: var(--text-gray);
  line-height: 1.8;
}

.crm-features-grid .crm-feature-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.crm-stats .crm-stats__heading {
  color: #fff;
  margin-bottom: var(--spacing-xl);
  -webkit-text-fill-color: #fff;
  background: none;
}

.crm-stats .crm-stats__heading::after {
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
}

.crm-stat-value {
  font-size: clamp(2rem, 5vw, var(--font-size-3xl));
  color: #fff;
  margin-bottom: var(--spacing-xs);
}

.crm-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.crm-step {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.crm-step__num {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.08em;
  margin-bottom: var(--spacing-sm);
}

.crm-step h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.crm-step p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.crm-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.crm-platform-tag {
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--text-dark);
  font-weight: 600;
  font-size: var(--font-size-sm);
  box-shadow: var(--shadow-sm);
}

.crm-use-case h3 {
  font-size: var(--font-size-lg);
}

.crm-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.crm-quote footer {
  font-style: normal;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: var(--spacing-md);
}

.crm-case-study h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.crm-client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.crm-client-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-lighter);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.crm-client-logo i {
  color: var(--primary-color);
}

.crm-faq {
  max-width: 820px;
  margin: 0 auto;
}

.crm-faq__item {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  padding: 0 var(--spacing-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.crm-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--spacing-lg) 0;
}

.crm-faq__item summary::-webkit-details-marker {
  display: none;
}

.crm-faq__item summary h3 {
  display: inline;
  font-size: var(--font-size-md);
  color: var(--text-dark);
  margin: 0;
  padding-right: var(--spacing-xl);
  position: relative;
}

.crm-faq__item summary h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.crm-faq__item[open] summary h3::after {
  content: '−';
}

.crm-faq__item p {
  padding-bottom: var(--spacing-lg);
  margin: 0;
  font-size: var(--font-size-sm);
}

.crm-cta-final {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  color: #fff;
}

.crm-cta-final h2 {
  color: #fff;
  display: block;
  width: 100%;
  -webkit-text-fill-color: #fff;
  background: none;
  animation: none;
}

.crm-cta-final h2::after {
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
}

.crm-cta-final__sub {
  max-width: 640px;
  margin: 0 auto var(--spacing-xl);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-size-md);
}

@media (max-width: 900px) {
  .crm-hero__layout {
    grid-template-columns: 1fr;
  }

  .crm-dashboard__pipeline {
    grid-template-columns: repeat(2, 1fr);
  }
}