:root {
  /* Heading Sizes */
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.75rem;
  --h4-size: 1.5rem;
  --h5-size: 1.25rem;
  --h6-size: 1rem;

  --display-4-size: 3.2rem;
  --display-5-size: 3rem;
  --display-6-size: 2rem;
  --display-7-size: 1.8rem;
}

h1,
.h1 {
  font-size: var(--h1-size) !important;
}

h2,
.h2 {
  font-size: var(--h2-size) !important;
}

h3,
.h3 {
  font-size: var(--h3-size) !important;
}

h4,
.h4 {
  font-size: var(--h4-size) !important;
}

h5,
.h5 {
  font-size: var(--h5-size) !important;
}

h6,
.h6 {
  font-size: var(--h6-size) !important;
}

.display-4 {
  font-size: var(--display-4-size) !important;
}

.display-5 {
  font-size: var(--display-5-size) !important;
}

.display-6 {
  font-size: var(--display-6-size) !important;
}

.display-7 {
  font-size: var(--display-7-size) !important;
}

.rounded-4 {
  border-radius: 12px;
}

.opacity-75 {
  opacity: .75;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  overflow-x: hidden;
}

/* Utilities */
.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.w-15px {
  width: 15px;
  text-align: center;
}

.bg-light-hover {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.3s;
}

.bg-light-hover:focus {
  background-color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.25rem rgba(111, 179, 39, 0.25);
}

.compact-input {
  max-height: 44px;
  height: 44px;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
}

.bg-light-hover-bg {
  background-color: #fafbfa;
}

.hover-primary:hover {
  color: var(--color-primary) !important;
}

/* Custom Logo Styling */
.metrico-logo-text-sm,
.metrico-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.metrico-logo-text-sm {
  font-size: 16px;
}

.crm-logo-badge-sm,
.crm-logo-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  padding: 1px 6px;
  margin-left: 6px;
}

.crm-logo-badge-sm {
  font-size: 8px;
  padding: 2px 6px;
}

.logo-tagline-sm,
.logo-tagline {
  font-size: 11px;
  color: #6c757d;
  font-weight: 600;
  margin-top: 1px;
  letter-spacing: 0.2px;
}

.logo-tagline-sm {
  font-size: 6.5px;
}

/* Header & Nav */
.header {
  z-index: 1020;
}

.nav-link-custom {
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
  width: 100%;
}

.nav-link-custom:hover {
  color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section {
  background: #ffffff;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(111, 179, 39, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.6;
}

.blob-1 {
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(111, 179, 39, 0.15);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  bottom: -10%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: rgba(43, 196, 203, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(111, 179, 39, 0.7);
  animation: pulse 2s infinite;
}

.hero-title {
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* Buttons */
.btn-glow {
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.5s;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(111, 179, 39, 0.3) !important;
}

.btn-glow:hover::after {
  left: 120%;
}

.transition-arrow {
  transition: transform 0.3s;
}

.btn-glow:hover .transition-arrow {
  transform: translateX(5px);
}

.btn-play {
  text-decoration: none;
}

.play-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.3s;
}

.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #333;
  transition: width 0.3s ease;
}

.btn-play:hover .play-icon {
  transform: scale(1.1);
  background-color: var(--color-primary);
  color: #fff;
}

.btn-play:hover .hover-underline::after {
  width: 100%;
}

.hero-form-card {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
}


/* Cards & Automate */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover-lift:hover .icon-box {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.icon-pulse {
  animation: subtle-pulse 3s infinite;
}

/* Dashboard Mockup */
.dashboard-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 179, 39, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mock-dashboard {
  height: 520px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mock-sidebar {
  width: 220px;
}

.mock-nav .nav-item {
  cursor: pointer;
  transition: all 0.2s;
}

.mock-nav .nav-item:hover:not(.active) {
  background-color: rgba(0, 0, 0, 0.03);
  padding-left: 15px !important;
}

.custom-tabs .tab-hover {
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.custom-tabs .tab-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s;
}

.custom-tabs .tab-hover:hover {
  color: var(--color-primary);
}

.custom-tabs .tab-hover:hover::after {
  width: 100%;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: -20px;
  width: 2px;
  background-color: #f1f1f1;
}

.timeline-item:last-child::before {
  display: none;
}

.hover-lift-timeline {
  transition: transform 0.3s;
}

.hover-lift-timeline:hover {
  transform: translateX(5px);
}

.floating-badge {
  animation: float 4s ease-in-out infinite;
  z-index: 11;
}

/* Feature List */
.feature-list-item {
  transition: transform 0.2s;
}

.feature-list-item:hover {
  transform: translateX(10px);
  color: var(--color-primary);
}

/* Handdrawn Note */
.handwriting {
  font-family: 'Comic Sans MS', 'Caveat', cursive, sans-serif;
  transform: rotate(-3deg);
}

.handwritten-arrow {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawArrow 2s ease forwards 1s;
}

.handwritten-arrow-head {
  animation: fadeIn 0.5s ease forwards 2.5s;
}

.handwriting-div {
  width: 250px;
}

.handwriting-underline {
  width: 120px;
  margin-left: auto;
  transform: rotate(-2deg);
  height: 2px;
}

.handwriting-underline::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 120%;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0.8;
  transform: rotate(-3deg);
  z-index: 0;
  border-radius: 20px;
}

/* Process Section */
.process-row::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e9ecef;
  z-index: 0;
}

.step-item {
  z-index: 1;
}

.step-item .icon-wrapper {
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-item:hover .icon-wrapper {
  /* transform: scale(1.15) rotate(5deg); */
  box-shadow: 0 15px 25px rgba(111, 179, 39, 0.25) !important;
  border-color: var(--color-primary) !important;
}

.step-item::after {
  content: "\f054";
  /* fa-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 26px;
  right: -10px;
  color: #adb5bd;
  background: #fafbfa;
  padding: 0 5px;
  z-index: 3;
}

.step-item:last-child::after {
  display: none;
}

/* CTA Section */
.cta-banner {
  background-color: var(--color-primary) !important;
  border-radius: 20px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.6;
  z-index: 0;
}


.cta-blob {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Footer */
.footer {
  background-color: #fff;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.footer-links li a:hover::after {
  width: 100%;
}

.social-icon:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(111, 179, 39, 0.3);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(111, 179, 39, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(111, 179, 39, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(111, 179, 39, 0);
  }
}

@keyframes subtle-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 179, 39, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(111, 179, 39, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(111, 179, 39, 0);
  }
}

@keyframes drawArrow {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 80vw;
  height: 100%;
  background: #fff;
  z-index: 1040;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.mobile-menu.active {
  left: 0;
}

/* --- Features Page Styles --- */

/* Hero Image Specifics */
.hero-dashboard-img {
  max-width: 99%;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-dashboard-img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Feature Detailed Cards */
.feature-card-detailed {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.feature-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
  border-color: var(--color-primary) !important;
}

.link-arrow {
  transition: all 0.3s ease;
}

.feature-card-detailed:hover .link-arrow {
  letter-spacing: 0.5px;
}

.feature-card-detailed:hover .link-arrow i {
  transform: translateX(5px);
}

/* 360 View Container & Orbit Nodes */
.view-360-container {
  width: 450px;
  height: 450px;
}

.central-node {
  width: 140px;
  height: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow: 0 0 0 15px rgba(111, 179, 39, 0.1);
  animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 179, 39, 0.2);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(111, 179, 39, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(111, 179, 39, 0);
  }
}

.orbit-node {
  position: absolute;
  white-space: nowrap;
  z-index: 4;
  transition: all 0.3s;
  cursor: default;
}

.orbit-node:hover {
  transform: scale(1.1);
  border-color: var(--color-primary) !important;
  box-shadow: 0 5px 15px rgba(111, 179, 39, 0.15) !important;
  color: var(--color-primary);
}

/* Positioning Orbit Nodes (Circle Radius ~225px) */
.node-1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Top */
.node-2 {
  top: 15%;
  right: 0;
  transform: translate(50%, -50%);
}

/* Top Right */
.node-3 {
  top: 50%;
  right: -20px;
  transform: translate(50%, -50%);
}

/* Right */
.node-4 {
  bottom: 15%;
  right: 0;
  transform: translate(50%, 50%);
}

/* Bottom Right */
.node-5 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

/* Bottom */
.node-6 {
  bottom: 15%;
  left: 0;
  transform: translate(-50%, 50%);
}

/* Bottom Left */
.node-7 {
  top: 50%;
  left: -20px;
  transform: translate(-50%, -50%);
}

/* Left */
.node-8 {
  top: 15%;
  left: 0;
  transform: translate(-50%, -50%);
}

/* Top Left */

/* Rotating dashed line effect */
.orbit-lines {
  animation: rotate-orbit 30s linear infinite;
}

@keyframes rotate-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* More Features List */
.hover-feature {
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.hover-feature:hover {
  background-color: #fff;
  border-color: #e9ecef;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transform: translateY(-5px);
}

/* .visibility-section {
  background-color: #fafbfa;
} */

/* --- Automation Page Styles --- */

/* Workflow Mock UI */
.mock-workflow {
  font-family: 'Inter', sans-serif;
}

.workflow-sidebar .list-group-item.active {
  color: var(--color-primary);
  font-weight: 700 !important;
}

.workflow-connector {
  width: 2px;
  height: 25px;
  background-color: #ced4da;
  position: relative;
  z-index: 1;
}

.hover-lift-sm {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift-sm:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}

/* Process Stepper */
.process-stepper .process-line {
  border-top: 2px dashed #dee2e6;
}

.process-stepper .process-icon {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-stepper .col:hover .process-icon {
  transform: translateY(-5px);
  border-color: var(--color-primary) !important;
  box-shadow: 0 10px 20px rgba(111, 179, 39, 0.1) !important;
}

/* bg-purple utility */
.bg-purple {
  background-color: #6f42c1 !important;
}

.text-purple {
  color: #6f42c1 !important;
}

.feature-cta-section {
  background: linear-gradient(135deg, #6FB327, #5a971d);
}

.readyTogetStartedBadge {
  background: rgb(255 255 255 / 69%) !important;
  color: #fff !important;
  font-weight: 400 !important;
  padding-block: 12px !important;
  padding-inline: 14px !important;
}

span.metricoText {
  color: #E8FFD4;
}

/* Premium Feature Cards */
.premium-feature-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-color: rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px;
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: var(--color-primary) !important;
}

.premium-feature-card .card-bg-gradient {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(111, 179, 39, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.premium-feature-card:hover .card-bg-gradient {
  opacity: 1;
}

.premium-feature-card .icon-wrapper {
  transition: all 0.4s ease;
}

.premium-feature-card:hover .icon-wrapper {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  transform: scale(1.1) rotate(5deg);
}

/* Automation Workflow Cards */
.automation-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e9ecef;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

.automation-card h4 {
  font-size: 16px !important;
}

.automation-card .text-secondary {
  font-size: 12px !important;
}

.automation-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(111, 179, 39, 0.12);
}

.automation-card-header {
  background: linear-gradient(135deg, rgba(111, 179, 39, 0.05), transparent);
  border-bottom: 1px solid #f1f3f5;
  transition: background 0.4s ease;
}

.automation-card:hover .automation-card-header {
  background: linear-gradient(135deg, rgba(111, 179, 39, 0.12), transparent);
}

.workflow-step {
  position: relative;
  z-index: 1;
}

.workflow-step-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #adb5bd;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.automation-card:hover .workflow-step-icon {
  border-color: var(--color-primary);
  color: #fff;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(111, 179, 39, 0.15);
}

.workflow-line {
  position: absolute;
  top: 32px;
  bottom: 24px;
  left: 15px;
  border-left: 2px dashed #e9ecef;
  z-index: 0;
  transition: border-color 0.3s ease;
}

.automation-card:hover .workflow-line {
  border-left: 2px solid var(--color-primary);
  opacity: 0.5;
}

.hover-arrow-btn {
  transition: all 0.3s ease;
}

.hover-arrow-btn:hover {
  background-color: var(--color-primary);
  color: #fff !important;
}

.hover-arrow-btn .transition-arrow {
  transition: transform 0.3s ease;
}

.hover-arrow-btn:hover .transition-arrow {
  transform: translateX(5px);
}

/* --- Integrations Page Styles --- */
.active-link,
.nav-link-custom.active-link {
  color: var(--color-primary) !important;
}

.active-link::after {
  width: 100% !important;
}

.integration-node-container {
  perspective: 1000px;
}

.int-node {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.int-node:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid var(--color-primary);
  z-index: 10;
}

.integration-card-v2 {
  border-radius: 12px !important;
  border: 1px solid #f1f3f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.integration-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.integration-glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.integration-card-v2:hover .integration-glow {
  opacity: 1;
}

.integration-icon-v2 {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.integration-card-v2:hover .integration-icon-v2 {
  transform: scale(1.1);
}

.hover-arrow-link {
  transition: letter-spacing 0.3s ease;
}

.integration-card-v2:hover .hover-arrow-link {
  letter-spacing: 0.5px;
}

.hover-arrow-link i {
  transition: transform 0.3s ease;
}

.integration-card-v2:hover .hover-arrow-link i {
  transform: translateX(3px);
}

.ready-to-connect {
  font-size: var(--display-5-size) !important;

}



/* --- Pricing Page New Styles --- */

.bg-primary-subtle {
  background-color: #eaf5e1 !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.pricing-card-new {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.pricing-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .08) !important;
  border-color: rgba(111, 179, 39, 0.2) !important;
  background-color: #fff;
}

.pricing-card-new.border-primary:hover {
  border-color: var(--color-primary) !important;
}

.btn-toggle {
  transition: all 0.3s ease;
}

.btn-toggle:hover:not(.active) {
  background-color: #f8f9fa !important;
}

.icon-box-pricing {
  transition: transform 0.3s ease;
}

.pricing-card-new:hover .icon-box-pricing {
  transform: scale(1.1);
  background-color: var(--color-primary) !important;
  color: white !important;
}

.border-end-lg {
  border-right: 1px solid #dee2e6;
}

@media (max-width: 991.98px) {
  .border-end-lg {
    border-right: none;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1.5rem;
  }
}

.process-icon-box {
  transition: all 0.3s ease;
}

.process-steps-container>div:hover .process-icon-box {
  background-color: var(--color-primary) !important;
  color: white !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(111, 179, 39, 0.2) !important;
}

.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.faq-item:hover i {
  color: var(--color-primary) !important;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Custom Accordion Icon */
.accordion-button::after {
  display: none !important;
}

.accordion-button:not(.collapsed) .accordion-custom-icon {
  transform: rotate(180deg);
  color: var(--color-primary) !important;
}

.accordion-custom-icon {
  transition: transform 0.3s ease;
}

.accordion-button {
  border: none;
  padding: 12px 22px !important;
  text-align: left;
  border-bottom: 1px solid var(--form-border);
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-color-primary);
}

.accordion-body {
  padding-top: 6px !important;
}


/* footer logo */

.metrico-logo-text {
  font-size: 25px;
}

.crm-logo-badge {
  font-size: 8px;
  padding: 4px 4px;
}

.logo-tagline {
  font-size: 10px;
}




/* quick btn  */
.quick-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 11;
  /* border: 1px solid; */
}

.scroolToTopButton {
  transform: translateY(200px);
  transition: all .3s;
  z-index: 1;
}

.whatsapp-button {
  z-index: 2;
}

.whatsapp-button a {
  color: #fff;
}

.scroolToTopButton.show {
  transform: translateY(0);
}

.quick-btn-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-btn button {
  /* padding: 5px 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 33px -16px rgba(0, 0, 0, 0.75);
  /* background-color: #fff; */
}

/* ------------ */

.footer-bottom {
  background-color: #0b0d1f;
  padding: 40px;
}

/* policy div */

.policy-div {
  column-gap: 20px;
  row-gap: 8px;
}


.form-overlay-container {
    position: relative;
}
.form-loader {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: .375rem;
}