.elementor-49040 .elementor-element.elementor-element-b77157f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:50px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49040 .elementor-element.elementor-element-cce47e6{--display:flex;--justify-content:center;}.elementor-49040 .elementor-element.elementor-element-e11b313{text-align:start;}.elementor-49040 .elementor-element.elementor-element-e11b313 .elementor-heading-title{font-family:"Outfit", Sans-serif;font-size:45px;line-height:52px;color:#000000;}.elementor-49040 .elementor-element.elementor-element-51cc0ef{font-family:"Inter", Sans-serif;font-size:18px;color:#6D6D6D;}.elementor-49040 .elementor-element.elementor-element-a311fa7{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-49040 .elementor-element.elementor-element-6682b61 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-49040 .elementor-element.elementor-element-69969c7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}@media(max-width:1024px){.elementor-49040 .elementor-element.elementor-element-e11b313{text-align:center;}}@media(max-width:767px){.elementor-49040 .elementor-element.elementor-element-b77157f{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:30px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-49040 .elementor-element.elementor-element-e11b313{width:auto;max-width:auto;text-align:start;}}/* Start custom CSS for heading, class: .elementor-element-e11b313 */:root {
            --primary: #00C49A;
            --secondary: #532DF5;
            --accent: #D1345B;
            --dark: #070707;
            --gray: #6E7A84;
            --white: #ffffff;
            --success-bg: #f0fdf4;
            --lead-bg: #fff7ed;
            --success-color: #10b981;
            --lead-color: #ea580c;
        }

        .occ-page {
            padding: 2rem;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        }

        /* Animations */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(-25%);
                animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            }
            50% {
                transform: translateY(0);
                animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            }
        }

        @keyframes fade-in {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slide-right {
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Dashboard Container */
        .dashboard-container {
            position: relative;
            max-width: 500px;
            padding: 24px;
            background-color: var(--white);
            border: 1px solid #f3f4f6;
            border-radius: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            opacity: 0;
            transform: translateX(40px);
            transition: all 1s ease;
        }
        
        .dashboard-container.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .dashboard-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 196, 154, 0.2), rgba(83, 45, 245, 0.2));
            border-radius: 24px;
            filter: blur(48px);
            z-index: -1;
            animation: pulse 2s ease-in-out infinite;
        }

        /* Header */
        .header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            margin-bottom: 24px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .logo-icon i {
            color: var(--white);
        }

        .live-status {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            border-radius: 9999px;
            background-color: var(--success-bg);
        }
        
        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 9999px;
            background-color: var(--success-color);
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        /* KPI Cards */
        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .kpi-card {
            position: relative;
            overflow: hidden;
            padding: 16px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(0, 196, 154, 0.1), rgba(0, 196, 154, 0.05));
        }
        
        .kpi-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: -40px -40px 0 0;
            opacity: 0.1;
            background: var(--primary);
        }
        
        .kpi-card.secondary {
            background: linear-gradient(135deg, rgba(83, 45, 245, 0.1), rgba(83, 45, 245, 0.05));
        }
        
        .kpi-card.secondary::before {
            background: var(--secondary);
        }

        .kpi-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .kpi-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        .kpi-card.secondary .kpi-value {
            color: var(--secondary);
        }

        /* Activity Stream */
        .activity-stream {
            margin-bottom: 24px;
        }
        
        .activity-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        
        .activity-dots {
            display: flex;
            gap: 4px;
        }
        
        .activity-dots div {
            width: 4px;
            height: 4px;
            border-radius: 9999px;
            background-color: var(--primary);
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        
        .activity-dots div:nth-child(2) { background-color: var(--secondary); animation-delay: 0.2s; }
        .activity-dots div:nth-child(3) { background-color: var(--accent); animation-delay: 0.4s; }

        .activity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 8px;
            margin-bottom: 8px;
            animation: fade-in 0.5s ease-out;
        }
        
        .activity-item.success { background-color: var(--success-bg); }
        .activity-item.lead { background-color: var(--lead-bg); }

        .activity-item .dot {
            width: 8px;
            height: 8px;
            border-radius: 9999px;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .activity-item .dot.success { background-color: var(--success-color); }
        .activity-item .dot.lead { background-color: #f97316; }

        .activity-item i {
            color: var(--success-color);
        }
        
        .activity-item.lead i { color: var(--lead-color); }

        .activity-text {
            flex: 1;
        }

        /* Footer Stats */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .stat-card {
            text-align: center;
            padding: 8px;
            border-radius: 8px;
        }
        
        .stat-card:nth-child(1) { background-color: rgba(0, 196, 154, 0.05); }
        .stat-card:nth-child(2) { background-color: rgba(83, 45, 245, 0.05); }
        .stat-card:nth-child(3) { background-color: rgba(209, 52, 91, 0.05); }
        .stat-card:nth-child(4) { background: linear-gradient(to right, rgba(0, 196, 154, 0.05), rgba(83, 45, 245, 0.05)); }

        .stat-value {
            font-size: 14px;
            font-weight: 700;
        }
        
        .stat-card:nth-child(1) .stat-value { color: var(--primary); }
        .stat-card:nth-child(2) .stat-value { color: var(--secondary); }
        .stat-card:nth-child(3) .stat-value { color: var(--accent); }
        .stat-card:nth-child(4) .stat-value { color: var(--primary); }
        
        .stat-label {
            font-size: 12px;
            color: var(--gray);
        }

        /* Floating Icons */
        .floating-icon {
            position: absolute;
            width: 24px;
            height: 24px;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .floating-icon.top-right {
            top: -8px;
            right: -8px;
            background-color: var(--success-color);
            animation: bounce 1s infinite;
        }
        
        .floating-icon.bottom-left {
            bottom: -8px;
            left: -8px;
            background-color: var(--secondary);
            animation: pulse 2s infinite;
        }

        .floating-icon i {
            font-size: 12px;
            color: var(--white);
        }

        .floating-icon .dot {
            width: 8px;
            height: 8px;
            background-color: var(--white);
            border-radius: 9999px;
        }

        /* Typography */
        h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
        h4 { font-size: 14px; font-weight: 600; color: var(--dark); }
        .text-xs { font-size: 12px; }
        .text-sm { font-size: 14px; }
        .text-dark { color: var(--dark); }
        .text-gray { color: var(--gray); }
        .text-primary { color: var(--primary); }
        .text-secondary { color: var(--secondary); }
        .text-green { color: var(--success-color); }
        .font-medium { font-weight: 500; }
        .font-bold { font-weight: 700; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6682b61 *//* CSS Variables */
:root {
  --primary: #00C49A;
  --secondary: #532DF5;
  --accent: #D1345B;
  --dark: #070707;
  --gray: #6E7A84;
  --white: #ffffff;
  --success-bg: #f0fdf4;
  --lead-bg: #fff7ed;
  --success-color: #10b981;
  --lead-color: #ea580c;
}
/* Base Styles */
.occ-page {
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Dashboard Container - Initial State */
.dashboard-container {
  position: relative;
  max-width: 500px;
  padding: 24px;
  background-color: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0; /* Starts invisible */
  transform: translateX(40px);
}
/* Dashboard Container - Final State */
.hero-animated .dashboard-container {
  animation: slide-right 1s ease-out forwards;
}
/* Other Elements with Animation */
.hero-animated .live-dot,
.hero-animated .kpi-value,
.hero-animated .activity-dots div,
.hero-animated .activity-item .dot,
.hero-animated .dashboard-container::before {
  animation-play-state: running;
}
.hero-animated .kpi-card:nth-child(1) { animation-delay: 0.3s; }
.hero-animated .kpi-card:nth-child(2) { animation-delay: 0.5s; }
.hero-animated .activity-item:nth-child(1) { animation: fade-in 0.5s ease-out forwards; animation-delay: 0.7s; }
.hero-animated .activity-item:nth-child(2) { animation: fade-in 0.5s ease-out forwards; animation-delay: 0.9s; }
.hero-animated .floating-icon.top-right { animation: bounce 1s infinite; animation-delay: 1.2s; }
.hero-animated .floating-icon.bottom-left { animation: pulse 2s infinite; animation-delay: 1.4s; }
/* Other Styling */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.logo-icon i {
  color: var(--white);
}
.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: var(--success-bg);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--success-color);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.kpi-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 196, 154, 0.1), rgba(0, 196, 154, 0.05));
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: -40px -40px 0 0;
  opacity: 0.1;
  background: var(--primary);
}
.kpi-card.secondary {
  background: linear-gradient(135deg, rgba(83, 45, 245, 0.1), rgba(83, 45, 245, 0.05));
}
.kpi-card.secondary::before {
  background: var(--secondary);
}
.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.kpi-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.kpi-card.secondary .kpi-value {
  color: var(--secondary);
}
.activity-stream {
  margin-bottom: 24px;
}
.activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.activity-dots {
  display: flex;
  gap: 4px;
}
.activity-dots div {
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background-color: var(--primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.activity-dots div:nth-child(2) { background-color: var(--secondary); animation-delay: 0.2s; }
.activity-dots div:nth-child(3) { background-color: var(--accent); animation-delay: 0.4s; }
.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
  animation: fade-in 0.5s ease-out;
}
.activity-item.success { background-color: var(--success-bg); }
.activity-item.lead { background-color: var(--lead-bg); }
.activity-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.activity-item .dot.success { background-color: var(--success-color); }
.activity-item .dot.lead { background-color: #f97316; }
.activity-item i {
  color: var(--success-color);
}
.activity-item.lead i { color: var(--lead-color); }
.activity-text {
  flex: 1;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat-card {
  text-align: center;
  padding: 8px;
  border-radius: 8px;
}
.stat-card:nth-child(1) { background-color: rgba(0, 196, 154, 0.05); }
.stat-card:nth-child(2) { background-color: rgba(83, 45, 245, 0.05); }
.stat-card:nth-child(3) { background-color: rgba(209, 52, 91, 0.05); }
.stat-card:nth-child(4) { background: linear-gradient(to right, rgba(0, 196, 154, 0.05), rgba(83, 45, 245, 0.05)); }
.stat-value {
  font-size: 14px;
  font-weight: 700;
}
.stat-card:nth-child(1) .stat-value { color: var(--primary); }
.stat-card:nth-child(2) .stat-value { color: var(--secondary); }
.stat-card:nth-child(3) .stat-value { color: var(--accent); }
.stat-card:nth-child(4) .stat-value { color: var(--primary); }
.stat-label {
  font-size: 12px;
  color: var(--gray);
}
.floating-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-icon.top-right {
  top: -8px;
  right: -8px;
  background-color: var(--success-color);
  animation: bounce 1s infinite;
}
.floating-icon.bottom-left {
  bottom: -8px;
  left: -8px;
  background-color: var(--secondary);
  animation: pulse 2s infinite;
}
.floating-icon i {
  font-size: 12px;
  color: var(--white);
}
.floating-icon .dot {
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 9999px;
}
/* Typography */
h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
h4 { font-size: 14px; font-weight: 600; color: var(--dark); }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-dark { color: var(--dark); }
.text-gray { color: var(--gray); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-green { color: var(--success-color); }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4baa311 *//* Color Variables */
        .occ-page {
            --occ-primary: #00C49A;
            --occ-secondary: #532DF5;
            --occ-accent: #D1345B;
            --occ-dark: #070707;
            --occ-gray: #6E7A84;
            --occ-light-bg: #F8FCFC;
            --occ-white: #ffffff;
        }

        /* Container */
        .occ-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        .occ-text-primary { color: var(--occ-primary); }
        .occ-text-secondary { color: var(--occ-secondary); }
        .occ-text-accent { color: var(--occ-accent); }
        .occ-text-dark { color: var(--occ-dark); }
        .occ-text-gray { color: var(--occ-gray); }
        .occ-text-white { color: #ffffff; }
        .occ-text-yellow { color: #facc15; }
        .occ-text-green { color: #10b981; }
        .occ-text-blue { color: #3b82f6; }
        .occ-text-orange { color: #f97316; }
        .occ-text-purple { color: #a855f7; }
        .occ-text-gray-light { color: #d1d5db; }

        /* Background Colors */
        .occ-bg-white { background-color: #ffffff; }
        .occ-bg-light { background-color: var(--occ-light-bg); }
        .occ-bg-dark { background-color: var(--occ-dark); }
        .occ-bg-primary { background-color: var(--occ-primary); }
        .occ-bg-secondary { background-color: var(--occ-secondary); }
        .occ-bg-accent { background-color: var(--occ-accent); }

        /* Layout */
        .occ-flex { display: flex; }
        .occ-grid { display: grid; }
        .occ-hidden { display: none; }
        .occ-block { display: block; }
        .occ-relative { position: relative; }
        .occ-absolute { position: absolute; }
        .occ-overflow-hidden { overflow: hidden; }
        .occ-text-center { text-align: center; }
        .occ-text-left { text-align: left; }
        .occ-items-center { align-items: center; }
        .occ-justify-center { justify-content: center; }
        .occ-justify-between { justify-content: space-between; }
        .occ-flex-col { flex-direction: column; }
        .occ-flex-1 { flex: 1 1 0%; }

        /* Spacing */
        .occ-gap-1 { gap: 4px; }
        .occ-gap-2 { gap: 8px; }
        .occ-gap-3 { gap: 12px; }
        .occ-gap-4 { gap: 8px; padding:13px}
        .occ-gap-6 { gap: 24px; }
        .occ-gap-8 { gap: 32px; }
        .occ-gap-12 { gap: 48px; }

        .occ-p-2 { padding: 8px; }
        .occ-p-3 { padding: 12px; }
        
        .occ-p-6 { padding: 24px; }
        .occ-p-8 { padding: 32px; }
        .occ-px-3 { padding-left: 12px; padding-right: 12px; }
        .occ-px-4 { padding-left: 16px; padding-right: 16px; }
        .occ-px-6 { padding-left: 24px; padding-right: 24px; }
        .occ-px-8 { padding-left: 32px; padding-right: 32px; }
        .occ-py-1 { padding-top: 4px; padding-bottom: 4px; }
        .occ-py-2 { padding-top: 8px; padding-bottom: 8px; }
        .occ-py-4 { padding-top: 16px; padding-bottom: 16px; }
        .occ-py-20 { padding-top: 80px; padding-bottom: 80px; }

        .occ-mb-2 { margin-bottom: 8px; }
        .occ-mb-3 { margin-bottom: 12px; }
        .occ-mb-4 { margin-bottom: 16px; }
        .occ-mb-6 { margin-bottom: 24px; }
        .occ-mb-8 { margin-bottom: 32px; }
        .occ-mb-12 { margin-bottom: 48px; }
        .occ-mb-16 { margin-bottom: 64px; }
        .occ-mt-4 { margin-top: 16px; }
        .occ-mt-6 { margin-top: 24px; }
        .occ-mt-8 { margin-top: 32px; }
        .occ-mx-auto { margin-left: auto; margin-right: auto; }
        .occ-mr-2 { margin-right: 8px; }
        .occ-ml-2 { margin-left: 8px; }

        /* Width and Height */
        .occ-w-full { width: 100%; }
        .occ-w-1 { width: 4px; }
        .occ-w-2 { width: 8px; }
        .occ-w-3 { width: 12px; }
        .occ-w-4 { width: 16px; }
        .occ-w-5 { width: 20px; }
        .occ-w-6 { width: 24px; }
        .occ-w-8 { width: 32px; }
        .occ-w-12 { width: 48px; }
        .occ-w-16 { width: 64px; }
        .occ-w-20 { width: 80px; }
        .occ-w-24 { width: 96px; }
        .occ-w-32 { width: 128px; }
        .occ-h-1 { height: 4px; }
        .occ-h-2 { height: 8px; }
        .occ-h-3 { height: 12px; }
        .occ-h-4 { height: 16px; }
        .occ-h-5 { height: 20px; }
        .occ-h-6 { height: 24px; }
        .occ-h-8 { height: 32px; }
        .occ-h-12 { height: 48px; }
        .occ-h-16 { height: 64px; }
        .occ-h-20 { height: 80px; }
        .occ-h-24 { height: 96px; }
        .occ-h-32 { height: 128px; }

        /* Border Radius */
        .occ-rounded { border-radius: 4px; }
        .occ-rounded-lg { border-radius: 8px; }
        .occ-rounded-xl { border-radius: 12px; }
        .occ-rounded-2xl { border-radius: 16px; }
        .occ-rounded-3xl { border-radius: 24px; }
        .occ-rounded-full { border-radius: 9999px; }

        /* Shadows */
        .occ-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
        .occ-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .occ-shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

        /* Borders */
        .occ-border { border: 1px solid #e5e7eb; }
        .occ-border-2 { border: 2px solid #e5e7eb; }
        .occ-border-gray { border-color: #f3f4f6; }
        

        /* Typography Sizes */
        .occ-text-xs { font-size: 12px; }
        .occ-text-sm { font-size: 14px; }
        .occ-text-base { font-size: 16px; }
        .occ-text-lg { font-size: 18px; }
        .occ-text-xl { font-size: 20px; }
        .occ-text-2xl { font-size: 24px; }
        .occ-text-3xl { font-size: 30px; }
        .occ-text-4xl { font-size: 36px; }
        .occ-text-5xl { font-size: 48px; }
        .occ-font-medium { font-weight: 500; }
        .occ-font-semibold { font-weight: 600; }
        .occ-font-bold { font-weight: 700; }
        .occ-leading-tight { line-height: 1.25; }
        .occ-leading-relaxed { line-height: 1.625; }

        /* Grid System */
        .occ-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
        .occ-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .occ-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .occ-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
        .occ-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

        /* Max Width */
        .occ-max-w-3xl { max-width: 768px; }
        .occ-max-w-4xl { max-width: 896px; }
        .occ-max-w-7xl { max-width: 1280px; }

        /* Positioning */
        .occ-inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
        .occ-inset-2 { top: 8px; right: 8px; bottom: 8px; left: 8px; }

        /* Transform Origin */
        .occ-origin-top { transform-origin: top; }
        .occ-origin-left { transform-origin: left; }

        /* Transitions */
        .occ-transition-all { transition: all 0.3s ease; }
        .occ-transition-transform { transition: transform 0.3s ease; }
        .occ-transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
        .occ-transition-opacity { transition: opacity 0.3s ease; }
        .occ-duration-300 { transition-duration: 300ms; }
        .occ-duration-500 { transition-duration: 500ms; }
        .occ-duration-700 { transition-duration: 700ms; }

        /* Opacity */
        .occ-opacity-0 { opacity: 0; }
        .occ-opacity-5 { opacity: 0.05; }
        .occ-opacity-10 { opacity: 0.1; }
        .occ-opacity-20 { opacity: 0.2; }

        /* Space Between */
        .occ-space-y-4 > * + * { margin-top: 16px; }
        .occ-space-y-6 > * + * { margin-top: 24px; }

        /* Animations */
        @keyframes occ-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes occ-bounce {
            0%, 100% { 
                transform: translateY(-25%); 
                animation-timing-function: cubic-bezier(0.8, 0, 1, 1); 
            }
            50% { 
                transform: translateY(0); 
                animation-timing-function: cubic-bezier(0, 0, 0.2, 1); 
            }
        }

        @keyframes occ-fade-in {
            from { 
                opacity: 0; 
                transform: translateY(10px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .occ-animate-pulse { animation: occ-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
        .occ-animate-bounce { animation: occ-bounce 1s infinite; }
        .occ-animate-fade-in { animation: occ-fade-in 0.5s ease-out; }

        /* Visibility Classes */
        .occ-slide-left { 
            opacity: 0; 
            transform: translateX(-40px); 
            transition: all 1s ease; 
        }
        .occ-slide-right { 
            opacity: 0; 
            transform: translateX(40px); 
            transition: all 1s ease; 
        }
        .occ-slide-left.occ-visible { 
            opacity: 1; 
            transform: translateX(0); 
        }
        .occ-slide-right.occ-visible { 
            opacity: 1; 
            transform: translateX(0); 
        }

        /* Component Styles */
        .occ-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid;
            transition: all 0.3s ease;
        }

        .occ-badge-primary {
            background: var(--occ-light-bg);
            color: var(--occ-primary);
            border-color: rgba(0, 196, 154, 0.2);
        }

        .occ-badge-primary:hover {
            background: var(--occ-primary);
            color: white;
        }

        .occ-badge-secondary {
            background: rgba(83, 45, 245, 0.1);
            color: var(--occ-secondary);
            border-color: rgba(83, 45, 245, 0.2);
        }

        .occ-badge-white {
            background: white;
            color: var(--occ-primary);
            border-color: rgba(0, 196, 154, 0.2);
        }

        .occ-badge-dark {
            background: rgba(0, 196, 154, 0.2);
            color: var(--occ-primary);
            border-color: rgba(0, 196, 154, 0.3);
        }

        .occ-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .occ-btn-primary {
            background: var(--occ-primary);
            color: white;
        }

        .occ-btn-primary:hover {
            background: var(--occ-secondary);
            transform: translateY(-2px);
        }

        .occ-btn-outline {
            background: transparent;
            color: var(--occ-primary);
            border: 2px solid var(--occ-primary);
        }

        .occ-btn-outline:hover {
            background: var(--occ-accent);
            color: white;
            border-color: var(--occ-accent);
        }

        .occ-btn-outline-white {
            background: transparent;
            color: var(--occ-primary);
            border: 2px solid var(--occ-primary);
        }

        .occ-btn-outline-white:hover {
            background: var(--occ-primary);
            color: white;
        }

        /* Hero Section */
        .occ-hero-title {
            font-size: 45px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .occ-section-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .occ-card-title {
            font-size: 17px;
            font-weight: 600;
            
        }

        /* Dashboard Styles */
        .occ-dashboard-container {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: 1px solid #f3f4f6;
            position: relative;
        }

        .occ-dashboard-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 196, 154, 0.2), rgba(83, 45, 245, 0.2));
            border-radius: 24px;
            filter: blur(48px);
            z-index: -1;
            animation: occ-pulse 2s ease-in-out infinite;
        }

        .occ-kpi-card {
            padding: 16px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 196, 154, 0.1), rgba(0, 196, 154, 0.05));
        }

        .occ-kpi-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: -40px -40px 0 0;
            opacity: 0.1;
            background: var(--occ-primary);
        }

        .occ-kpi-secondary {
            background: linear-gradient(135deg, rgba(83, 45, 245, 0.1), rgba(83, 45, 245, 0.05));
        }

        .occ-kpi-secondary::before {
            background: var(--occ-secondary);
        }

        .occ-kpi-accent {
            background: linear-gradient(135deg, rgba(209, 52, 91, 0.1), rgba(209, 52, 91, 0.05));
        }

        .occ-kpi-accent::before {
            background: var(--occ-accent);
        }

        .occ-kpi-gradient {
            background: linear-gradient(135deg, rgba(0, 196, 154, 0.1), rgba(83, 45, 245, 0.1));
        }

        .occ-kpi-gradient::before {
            background: linear-gradient(135deg, var(--occ-primary), var(--occ-secondary));
        }

        /* Activity Items */
        .occ-activity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px;
            border-radius: 8px;
            margin-bottom: 8px;
            animation: occ-fade-in 0.5s ease-out;
        }

        .occ-activity-success { background: #f0fdf4; }
        .occ-activity-deal { background: #eff6ff; }
        .occ-activity-lead { background: #fff7ed; }
        .occ-activity-target { background: #fdf4ff; }

        /* Feature Cards */
        .occ-feature-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: white;
            border: 1px solid #f3f4f6;
            transition: all 0.5s ease;
            cursor: pointer;
            padding: 32px;
            text-align: center;
        }

        .occ-feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-color: transparent;
        }

        .occ-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            background: linear-gradient(135deg, rgba(0, 196, 154, 0.1), rgba(0, 196, 154, 0.05));
        }

        .occ-feature-card:hover::before {
            opacity: 1;
        }

        .occ-feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--occ-primary);
            transform: scaleX(0);
            transition: transform 0.5s ease;
            transform-origin: left;
        }

        .occ-feature-card:hover::after {
            transform: scaleX(1);
        }

        .occ-icon-container {
             width: 60px;
            height: 60px;
            border-radius: 16px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 2;
            background: rgba(0, 196, 154, 0.15);
            color: var(--occ-primary);
        }

        .occ-feature-card:hover .occ-icon-container {
            transform: scale(1.1) rotate(6deg);
        }

        .occ-feature-arrow {
            margin-top: 24px;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.3s ease;
        }

        .occ-feature-card:hover .occ-feature-arrow {
            opacity: 1;
            transform: translateY(0);
        }

        /* Understanding Cards */
        .occ-understanding-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            background: white;
            border: 2px solid #f3f4f6;
            transition: all 0.5s ease;
            cursor: pointer;
            padding: 32px;
            text-align: center;
        }

        .occ-understanding-card:hover {
            border-color: transparent;
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
        }

        .occ-understanding-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .occ-understanding-card:hover .occ-understanding-pattern {
            opacity: 0.05;
        }

        .occ-understanding-accent {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--occ-primary);
            transform: scaleY(0);
            transition: transform 0.5s ease;
            transform-origin: top;
        }

        .occ-understanding-card:hover .occ-understanding-accent {
            transform: scaleY(1);
        }

        .occ-hexagon {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            transition: transform 0.5s ease;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            background: rgba(0, 196, 154, 0.15);
        }

        .occ-hex-2 {
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            background: rgba(0, 196, 154, 0.1);
        }

        .occ-understanding-card:hover .occ-hexagon:first-child {
            transform: rotate(12deg);
        }

        .occ-understanding-card:hover .occ-hex-2 {
            transform: rotate(-6deg);
        }

        .occ-understanding-icon {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--occ-primary);
            transition: transform 0.3s ease;
        }

        .occ-understanding-card:hover .occ-understanding-icon {
            transform: scale(1.1);
        }

        .occ-understanding-indicator {
            width: 48px;
            height: 4px;
            border-radius: 2px;
            margin: 24px auto 0;
            background: var(--occ-primary);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }

        .occ-understanding-card:hover .occ-understanding-indicator {
            transform: scaleX(1);
        }

        /* Tab System */
        .occ-tabs {
            width: 100%;
        }

        .occ-tab-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 8px;
            background: var(--occ-light-bg);
            padding: 8px;
            border-radius: 16px;
            margin-bottom: 48px;
        }

        .occ-tab-trigger {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 12px;
            border: none;
            background: transparent;
            color: var(--occ-gray);
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .occ-tab-trigger:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .occ-tab-trigger.occ-active {
            background: var(--occ-primary);
            color: white;
        }

        .occ-tab-content {
            display: none;
        }

        .occ-tab-content.occ-active {
            display: block;
        }

        /* Industry Cards */
        .occ-industry-card {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 32px;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .occ-industry-card:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
            transform: scale(1.05);
        }

        .occ-progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            margin-top: 16px;
        }

        .occ-progress-fill {
            height: 100%;
            border-radius: 4px;
            transition: width 1s ease;
        }

        /* FAQ Styles */
        .occ-faq-item {
            margin-bottom: px;
            border: 1px solid #f3f4f6;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .occ-faq-item:hover {
            border-color: var(--occ-primary);
        }

        .occ-faq-item.occ-active {
            border-color: var(--occ-primary);
            background: rgba(0, 196, 154, 0.05);
        }

        .occ-faq-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px;
            cursor: pointer;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
        }

        .occ-faq-trigger:hover {
            background: rgba(0, 196, 154, 0.02);
        }

        .occ-faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .occ-faq-content.occ-active {
            max-height: 200px;
        }

        .occ-faq-content-inner {
            padding: 0 24px 24px;
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .occ-sm-flex-row { flex-direction: row; }
        }

        @media (min-width: 768px) {
            .occ-md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .occ-md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }

        @media (min-width: 1024px) {
            .occ-lg-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .occ-lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
            .occ-lg-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
        }

        @media (max-width: 1024px) {
            .occ-container { padding: 0 20px; }
            .occ-hero-title { font-size: 36px; }
            .occ-section-title { font-size: 32px; }
            .occ-tab-list { grid-template-columns: repeat(3, 1fr); }
            .occ-tab-trigger { font-size: 12px; padding: 12px 8px; }
        }

        @media (max-width: 768px) {
            .occ-py-20 { padding-top: 60px; padding-bottom: 60px; }
            .occ-hero-title { font-size: 32px; }
            .occ-section-title { font-size: 28px; }
            .occ-tab-list { grid-template-columns: repeat(2, 1fr); }
            .occ-tab-trigger { font-size: 14px; padding: 16px; }
            .occ-dashboard-container { padding: 16px; }
        }

        @media (max-width: 640px) {
            .occ-container { padding: 0 16px; }
            .occ-hero-title { font-size: 28px; }
            .occ-section-title { font-size: 24px; }
            .occ-card-title { font-size: 20px; }
            .occ-btn { padding: 12px 24px; font-size: 16px; }
            .occ-tab-list { grid-template-columns: 1fr; }
            .occ-feature-card { padding: 24px; }
            .occ-understanding-card { padding: 24px; }
            .occ-faq-trigger { padding: 20px; }
        }
        
        
        
        
        
    /* Existing styles remain the same until the media queries */

    /* Enhanced Mobile Responsiveness */
    @media (max-width: 1024px) {
        .occ-container {
            padding: 0 20px;
        }
        .occ-hero-title {
            font-size: 36px;
        }
        .occ-section-title {
            font-size: 32px;
        }
        .occ-tab-list {
            grid-template-columns: repeat(3, 1fr);
        }
        .occ-tab-trigger {
            font-size: 12px;
            padding: 12px 8px;
        }
    }

    @media (max-width: 768px) {
        .occ-py-20 {
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .occ-hero-title {
            font-size: 32px;
            line-height: 1.3;
        }
        .occ-section-title {
            font-size: 28px;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .occ-tab-list {
            grid-template-columns: repeat(2, 1fr);
        }
        .occ-tab-trigger {
            font-size: 14px;
            padding: 16px;
        }
        .occ-dashboard-container {
            padding: 16px;
        }
        .occ-grid {
            gap: 16px;
        }
        .occ-feature-card, 
        .occ-understanding-card {
            padding: 24px;
        }
        .occ-flex {
            flex-direction: column;
        }
        .occ-space-y-4 > * + * {
            margin-top: 12px;
        }
    }

    @media (max-width: 640px) {
        .occ-container {
            padding: 0 16px;
        }
        .occ-hero-title {
            font-size: 28px;
        }
        .occ-section-title {
            font-size: 24px;
        }
        .occ-card-title {
            font-size: 18px;
        }
        .occ-btn {
            padding: 12px 24px;
            font-size: 16px;
        }
        .occ-tab-list {
            grid-template-columns: 1fr;
        }
        .occ-feature-card {
            padding: 20px;
        }
        .occ-understanding-card {
            padding: 20px;
        }
        .occ-faq-trigger {
            padding: 16px;
        }
        .occ-icon-container {
            width: 50px;
            height: 50px;
            font-size: 24px;
            margin-bottom: 16px;
        }
        .occ-md-grid-cols-2,
        .occ-lg-grid-cols-2,
        .occ-lg-grid-cols-3,
        .occ-lg-grid-cols-4 {
            grid-template-columns: 1fr !important;
        }
        .occ-text-center,
        .occ-text-left {
            text-align: center !important;
        }
        .occ-px-6,
        .occ-px-8 {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }
        .occ-mb-16,
        .occ-mb-12,
        .occ-mb-8 {
            margin-bottom: 24px !important;
        }
        .occ-max-w-3xl,
        .occ-max-w-4xl,
        .occ-max-w-7xl {
            max-width: 100% !important;
        }
    }

    /* Specific mobile fixes for certain sections */
    @media (max-width: 480px) {
        .occ-hero-title {
            font-size: 24px;
        }
        .occ-section-title {
            font-size: 22px;
        }
        .occ-badge {
            padding: 6px 12px;
            font-size: 12px;
        }
        .occ-feature-card:hover {
            transform: none !important;
        }
        .occ-understanding-card:hover {
            transform: none !important;
        }
        .occ-industry-card {
            padding: 20px;
        }
        .occ-faq-content-inner {
            padding: 0 16px 16px !important;
        }
        .occ-btn {
            width: 100%;
            justify-content: center;
        }
    }

    /* Fix for tab content layout on mobile */
    @media (max-width: 768px) {
        .occ-tab-content .occ-grid {
            grid-template-columns: 1fr !important;
            gap: 24px !important;
        }
        .occ-tab-content .occ-relative {
            order: -1;
            margin-bottom: 24px;
        }
    }
    
    
    
    
    
    
    
    
             .faq-item {
    background: white;
    border: 1px solid #00c49a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(133, 212, 200, 0.5);
    background: white;
    border-top: 1px solid #00c49a;
    border-bottom: none;
    border-left: 1px solid #00c49a;
    border-right: 1px solid #00c49a;
    border-radius: 8px;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border-top: 1px solid #00c49a;
    border-bottom: none;
    border-left: 1px solid #00c49a;
    border-right: 1px solid #00c49a;
    border-radius: 8px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f9fafb;
    border-top: 1px solid #00c49a;
    border-bottom: none;
    border-left: 1px solid #00c49a;
    border-right: 1px solid #00c49a;
    border-radius: 8px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
}

.chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.chevron.rotate {
    transform: rotate(180deg);
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 50px;
    transition: width 1s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes mockupEntry {
    from {
        opacity: 0;
        transform: scale(0.8) rotateY(90deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse { animation: pulse 2s infinite; }

/* Utility Classes */
.space-x-2 > * + * { margin-left: 8px; }
.space-x-3 > * + * { margin-left: 12px; }
.space-x-4 > * + * { margin-left: 16px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-6 > * + * { margin-top: 24px; }

.rounded-full { border-radius: 50%; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* Responsive Design */
@media (min-width: 640px) {
    .container { padding: 0 24px; }
    .hero-title { font-size: 44px; }
    .text-5xl { font-size: 48px; }
    .text-6xl { font-size: 56px; }
    .sm\:grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .tab-grid { grid-template-columns: 1fr 1fr; }
    .md\:grid-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-3 { grid-template-columns: repeat(3, 1fr); }
    .md\:grid-4 { grid-template-columns: repeat(4, 1fr); }
    .tab-navigation { flex-wrap: nowrap; }
}

@media (min-width: 1024px) {
    .container { padding: 0 32px; }
    .hero-title { font-size: 44px; }
    .text-5xl { font-size: 48px; }
    .text-6xl { font-size: 64px; }
    .lg\:grid-2 { grid-template-columns: repeat(2, 1fr); }
    .lg\:grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .hero-title { font-size: 40px; }
    .text-4xl { font-size: 30px; }
    .text-3xl { font-size: 24px; }
    .section { padding: 60px 0; }
    .tab-text { padding: 32px; }
    .tab-mockup { padding: 32px; }
    .btn { padding: 12px 20px; font-size: 14px; }
    .btn-lg { padding: 14px 24px; font-size: 16px; }
    .hero { padding: 60px 0; }
    .hero-grid { gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 32px; }
    .text-4xl { font-size: 24px; }
    .card { padding: 20px; }
    .tab-text { padding: 24px; }
    .tab-mockup { padding: 24px; }
    .faq-question { padding: 20px; font-size: 16px; }
    .faq-answer-content { padding: 0 20px 20px; }
}

/* Icon Styles */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-xl {
    width: 32px;
    height: 32px;
}
    
    
.acepeakai-faq-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.acepeakai-faq-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.acepeakai-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acepeakai-accordion-entry {
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.acepeakai-accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.acepeakai-accordion-header:hover {
    background-color: #f9fafb;
}

.acepeakai-accordion-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.acepeakai-accordion-entry.acepeakai-open .acepeakai-accordion-arrow {
    transform: rotate(180deg);
}

.acepeakai-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.acepeakai-accordion-entry.acepeakai-open .acepeakai-accordion-body {
    max-height: 200px;
}

.acepeakai-accordion-text {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

        
     @media only screen and (max-width: 767px){
          
         .side-middle{
           text-align: center;
         }
}/* End custom CSS */