.elementor-5377 .elementor-element.elementor-element-578507c{--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;}body.elementor-page-5377:not(.elementor-motion-effects-element-type-background), body.elementor-page-5377 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-5454613 *//* CSS Reset and Variables */
:root {
  --primary-color: #3e31b3;
  --primary-hover: #2f248f;
  --text-dark: #071330;
  --text-muted: #4a5568;
  --white: #ffffff;
  --card-bg: #ffffff;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 20px 40px rgba(7, 19, 48, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
}

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

body {
  font-family: var(--font-main);
  background-color: #fafbfc;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Banner Section Layout */
.odoo-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding: 60px 24px;
  background: radial-gradient(circle at 85% 20%, #f4f3ff 0%, #fafbfc 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-container {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Column Content Styling */
.content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInLeft 0.8s ease-out;
}

.main-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #3e31b3;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 580px;
}

.highlight-text {
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 32px;
}

/* Call to Action Buttons */
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: #3e31b3;
  color: var(--white);
  border: 1px solid #3e31b3;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 49, 179, 0.25);
  color: white;
}

.btn-secondary {
  background-color: var(--white);
  color: #3e31b3;
  border: 1.5px solid #3e31b3;
}

.btn-secondary:hover {
  background-color: rgba(62, 49, 179, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62, 49, 179, 0.08);
}

.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Right Column Visual Styling */
.visual-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 380px;
  animation: fadeInRight 0.8s ease-out;
}

.image-wrapper {
  position: relative;
  width: 85%;
  height: 340px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .team-img {
  transform: scale(1.03);
}

/* Immersive Decorative Brand Overlays to perfectly mirror original placement */
.laptop-brand-overlay {
  position: absolute;
  bottom: 24%;
  left: 56%;
  font-size: 14px;
  font-weight: 700;
  color: #a24689; /* Odoo signature purple-pink color tone */
  opacity: 0.85;
  pointer-events: none;
  letter-spacing: -0.5px;
}

.mug-brand-overlay {
  position: absolute;
  bottom: 7%;
  left: 71%;
  font-size: 7px;
  font-weight: 700;
  color: #102a43;
  opacity: 0.75;
  pointer-events: none;
}

/* Checklist Side Card Component */
.features-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 590px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  z-index: 3;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.features-card:hover {
  transform: translateY(-52%);
  box-shadow: 0 30px 60px rgba(7, 19, 48, 0.12);
}

.card-header {
  background-color: #3e31b3;
  color: var(--white);
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.02em;
}

.features-list {
  list-style: none;
  padding: 12px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 8px 18px;
  transition: background-color 0.2s ease;
}

.feature-item:hover {
  background-color: #f8fafc;
}

.check-icon {
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
  margin-right: 10px;
  flex-shrink: 0;
  line-height: 1.3;
}

.feature-text {
  font-size: 11.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
  .main-heading {
    font-size: 36px;
  }
  .sub-heading {
    font-size: 21px;
  }
  .features-card {
    width: 260px;
  }
}

@media (max-width: 1024px) {
  .banner-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .content-column {
    align-items: center;
    text-align: center;
  }
  .description {
    max-width: 650px;
  }
  .cta-group {
    justify-content: center;
  }
  .visual-column {
    justify-content: center;
    min-height: auto;
    padding-right: 40px;
  }
  .image-wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .features-card {
    right: 5%;
  }
  .desktop-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .odoo-banner {
    padding: 40px 16px;
  }
  .main-heading {
    font-size: 28px;
  }
  .sub-heading {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .visual-column {
    flex-direction: column;
    padding-right: 0;
  }
  .image-wrapper {
    width: 100%;
    height: 260px;
    margin-bottom: 24px;
  }
  .features-card {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .features-card:hover {
    transform: translateY(-2px);
  }
  .laptop-brand-overlay,
  .mug-brand-overlay {
    display: none; /* Hide micro overlays on smaller screen approximations */
  }
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* CSS */
:root {
  --text-primary: #0a1128;
  --text-secondary: #4f5e7b;
  --brand-purple: #3f3dbe;
  --brand-green: #1da752;
  --bg-purple-light: #f1effd;
  --bg-green-light: #e8f7ee;
  --card-border: #f0f2f6;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  --card-shadow-hover: 0 12px 30px rgba(63, 61, 190, 0.06);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-hire-section {
  padding: 40px 0 20px 0;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 61, 190, 0.15);
  box-shadow: var(--card-shadow-hover);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.05);
}

.purple-bg {
  background-color: var(--bg-purple-light);
}

.green-bg {
  background-color: var(--bg-green-light);
}

.feature-icon {
  width: 22px;
  height: 22px;
}

.purple-text {
  color: var(--brand-purple);
}

.green-text {
  color: var(--brand-green);
}

.card-title {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-description {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-hire-section {
    padding: 40px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .icon-wrapper {
    transition: none;
    transform: none !important;
  }
}

/* CSS */
:root {
  --bg-dark-blue: #020b24;
  --text-white: #ffffff;
  --text-lavender: #b0b9cf;
  --icon-purple: #8b7ef8;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.stats-bar-section {
  background-color: var(--bg-dark-blue);
  background-image: linear-gradient(180deg, #020b24 0%, #010717 100%);
  padding: 24px 20px;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-sans);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  transition: transform 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(139, 126, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--icon-purple);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-lavender);
  line-height: 1.3;
  white-space: nowrap;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar-section {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-item {
    min-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .stat-content {
    align-items: center;
}
}

@media (prefers-reduced-motion: reduce) {
  .stat-item {
    transform: none !important;
    transition: none;
  }
}

/* CSS */
:root {
  --navy-blue: #091332;
  --muted-slate: #52607a;
  --card-outline: #f0f3f8;
  --container-shadow: 0 10px 40px rgba(9, 19, 50, 0.03);
  --card-hover-shadow: 0 16px 36px rgba(62, 49, 179, 0.06);
  --card-radius: 12px;
  --container-radius: 16px;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-roles-section {
  padding: 0 0 20px 0;
  background-color: #fff;
  font-family: var(--font-stack);
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.outer-card-container {
  width: 100%;
  max-width: 1320px;
  background: #ffffff;
  border: 1px solid var(--card-outline);
  border-radius: var(--container-radius);
  padding: 40px 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-blue);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  width: 100%;
}

.role-card {
  background: #ffffff;
  border: 1px solid var(--card-outline);
  border-radius: var(--card-radius);
  padding: 24px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(62, 49, 179, 0.12);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.role-card:hover .icon-circle {
  transform: scale(1.06);
}

.role-icon {
  width: 20px;
  height: 20px;
}

/* Distinct Context-Matching Palette Tones */
.light-red-bg {
  background-color: #fff0f3;
}
.red-text {
  color: #ff4d6d;
}

.light-blue-bg {
  background-color: #eef4ff;
}
.blue-text {
  color: #3b82f6;
}

.light-purple-bg {
  background-color: #f5f3ff;
}
.purple-text {
  color: #7c3aed;
}

.dark-purple-bg {
  background-color: #faf5ff;
}
.dark-purple-text {
  color: #6b21a8;
}

.light-green-bg {
  background-color: #ecfdf5;
}
.green-text {
  color: #10b981;
}

.alt-purple-bg {
  background-color: #f3e8ff;
}
.alt-purple-text {
  color: #9333ea;
}

.teal-bg {
  background-color: #f0fdfa;
}
.teal-text {
  color: #0d9488;
}

.deep-purple-bg {
  background-color: #e0e7ff;
}
.deep-purple-text {
  color: #4f46e5;
}

.role-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-blue);
  line-height: 1.3;
  margin-bottom: 12px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-description {
  font-size: 11.5px;
  color: var(--muted-slate);
  line-height: 1.5;
  font-weight: 400;
}

/* Responsive Infrastructure */
@media (max-width: 1400px) {
  .roles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .role-name {
    height: auto;
  }
}

@media (max-width: 900px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .outer-card-container {
    padding: 32px 16px;
  }
}

@media (max-width: 480px) {
  .roles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .role-card,
  .icon-circle {
    transition: none;
    transform: none !important;
  }
}

/* CSS */
:root {
  --navy-main: #0a1435;
  --slate-muted: #4e5d78;
  --border-light: #f1f4f9;
  --box-shadow-main: 0 10px 40px rgba(10, 20, 53, 0.03);
  --box-shadow-hover: 0 16px 36px rgba(62, 49, 179, 0.05);
  --radius-lg: 16px;
  --radius-md: 12px;
  --sans-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-preset: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.engagement-models-section {
  padding: 0px 0 20px 0;
  background-color: #ffffff;
  font-family: var(--sans-font);
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.outer-card-wrapper {
  width: 100%;
  max-width: 1320px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px 44px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-main);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 13.5px;
  color: var(--slate-muted);
  font-weight: 400;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: 100%;
}

.model-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: var(--transition-preset);
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(62, 49, 179, 0.12);
}

.card-top-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.icon-container {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.model-card:hover .icon-container {
  transform: scale(1.05);
}

.model-icon {
  width: 20px;
  height: 20px;
}

/* Precise Color Groupings Matching Reference */
.purple-bg {
  background-color: #f1effd;
}
.purple-text {
  color: #3e31b3;
}

.dark-purple-bg {
  background-color: #f6effd;
}
.dark-purple-text {
  color: #5b21b6;
}

.blue-bg {
  background-color: #eef4ff;
}
.blue-text {
  color: #2563eb;
}

.lavender-bg {
  background-color: #f3f0fc;
}
.lavender-text {
  color: #4f46e5;
}

.blue-grey-bg {
  background-color: #ecf3f5;
}
.blue-grey-text {
  color: #0f766e;
}

.title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.model-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-main);
  line-height: 1.35;
}

.model-highlight {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.model-description {
  font-size: 11.5px;
  color: var(--slate-muted);
  line-height: 1.5;
  font-weight: 400;
  margin-top: auto;
}

/* Responsive System */
@media (max-width: 1250px) {
  .models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .outer-card-wrapper {
    padding: 32px 16px;
  }
}

@media (max-width: 550px) {
  .models-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .section-title {
    font-size: 21px;
  }
  .model-card {
    padding: 20px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .model-card,
  .icon-container {
    transition: none;
    transform: none !important;
  }
}

/* White-Label Delivery and Comparison Section Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.odoo-comparison-section {
  width: 100%;
  padding: 0px 0px 20px 0;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

.odoo-comparison-section *,
.odoo-comparison-section *::before,
.odoo-comparison-section *::after {
  box-sizing: border-box;
}

.odoo-comparison-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

/* ==========================================================================
   Left Panel: White-Label Partner Card
   ========================================================================== */
.odoo-partner-card {
  background-color: #03083d;
  background-image: linear-gradient(135deg, #03083d 0%, #050d5c 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(3, 8, 61, 0.15);
}

.odoo-partner-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.odoo-partner-subtitle {
  color: #b0b5e3;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.odoo-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 40px;
}

.odoo-partner-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.odoo-partner-check {
  color: #2ed573;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.odoo-partner-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.odoo-partner-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.odoo-partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #4d3df7;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
  white-space: nowrap;
  z-index: 2;
}

.odoo-partner-btn:hover {
  background-color: #3b2be3;
  transform: translateY(-2px);
}

.odoo-btn-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.odoo-partner-btn:hover .odoo-btn-arrow {
  transform: translateX(4px);
}

.odoo-partner-illustration {
  width: 140px;
  height: 140px;
  position: absolute;
  right: 20px;
  bottom: 10px;
  opacity: 0.85;
  pointer-events: none;
}

.odoo-partner-illustration svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Right Panel: Comparison Table Card
   ========================================================================== */
.odoo-table-card {
  background-color: #ffffff;
  border: 1px solid #eef2f9;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(160, 175, 210, 0.1);
}

.odoo-table-main-title {
  color: #03083d;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.odoo-table-main-title .odoo-vs {
  color: #7b839a;
  font-weight: 400;
  font-size: 18px;
}

.odoo-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.odoo-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Table Headers */
.odoo-comparison-table th {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
}

.col-traditional {
  color: #3e4756;
  width: 42%;
}

.col-metric {
  width: 23%;
}

.col-synconics {
  color: #4d3df7;
  text-align: right;
  width: 35%;
}

/* Table Rows */
.odoo-comparison-table tbody tr {
  border-bottom: 1px solid #f1f4fa;
}

.odoo-comparison-table tbody tr:last-child {
  border-bottom: none;
}

.odoo-comparison-table td {
  padding: 14px 16px;
  vertical-align: middle;
  font-size: 14px;
}

.td-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

/* Decorative background adjustments matching 6.png's colorful icon look */
.icon-purple {
  background-color: #f1edff;
}
.icon-pink {
  background-color: #ffeef4;
}
.icon-blue {
  background-color: #e6f5ff;
}
.icon-green {
  background-color: #e8f9ee;
}
.icon-orange {
  background-color: #fff4ec;
}
.icon-violet {
  background-color: #fbedff;
}

.val-text {
  color: #4a5568;
  font-weight: 500;
}

.metric-label {
  color: #7a869a;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  background-color: #f8fafc;
  border-radius: 4px;
  padding: 4px 8px !important;
  white-space: nowrap;
}

.synconics-val {
  color: #10b981; /* Green tone for benefits */
  font-weight: 600;
  text-align: right;
}

/* Hover effects for rows */
.odoo-comparison-table tbody tr {
  transition: background-color 0.2s ease;
}

.odoo-comparison-table tbody tr:hover {
  background-color: #fafbfc;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .odoo-comparison-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .odoo-partner-card {
    padding: 24px;
  }

  .odoo-partner-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .odoo-partner-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .odoo-partner-illustration {
    position: static;
    width: 100px;
    height: 100px;
    align-self: flex-end;
    margin-top: -40px;
  }

  .odoo-table-card {
    padding: 20px;
  }

  .odoo-comparison-table th,
  .odoo-comparison-table td {
    padding: 12px 8px;
    font-size: 13px;
  }
}
/* AI-Ready Odoo Development and Technical Expertise Section Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.odoo-ai-tech-section {
  width: 100%;
  padding: 0px 0 20px 0;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

.odoo-ai-tech-section *,
.odoo-ai-tech-section *::before,
.odoo-ai-tech-section *::after {
  box-sizing: border-box;
}

.odoo-ai-tech-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

/* ==========================================================================
   Left Panel: AI Ready Card
   ========================================================================== */
.odoo-ai-card {
  background-color: #03083d;
  background-image: linear-gradient(135deg, #020630 0%, #050f6b 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(3, 8, 61, 0.15); */
}

.odoo-ai-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.odoo-ai-subtitle {
  color: #b0b5e3;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.odoo-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 40px;
}

.odoo-ai-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.odoo-ai-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  font-size: 9px;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.3);
}

.odoo-ai-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.odoo-ai-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.odoo-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #4d3df7;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
  white-space: nowrap;
  z-index: 2;
}

.odoo-ai-btn:hover {
  background-color: #3b2be3;
  transform: translateY(-2px);
}

.odoo-btn-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.odoo-ai-btn:hover .odoo-btn-arrow {
  transform: translateX(4px);
}

.odoo-ai-brain-graphics {
  width: 130px;
  height: 130px;
  /* position: absolute; */
  /* right: 20px; */
  /* bottom: 15px; */
  opacity: 0.9;
  pointer-events: none;
}

.odoo-ai-brain-graphics svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 0px 12px rgba(217, 70, 239, 0.4));
}

/* ==========================================================================
   Right Panel: Technical Expertise Grid
   ========================================================================== */
.odoo-tech-card {
  background-color: #ffffff;
  border: 1px solid #eef2f9;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(160, 175, 210, 0.1);
  display: flex;
  flex-direction: column;
}

.odoo-tech-title {
  color: #03083d;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.odoo-tech-subtitle {
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 36px 0;
}

.odoo-tech-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.odoo-tech-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  justify-items: center;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
  padding-top: 8px;
}

.odoo-tech-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Fallback structural placeholders styled nicely to emulate the visual assets in 7.png */
.tech-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  transition: transform 0.2s ease;
}

.tech-logo:hover {
  transform: scale(1.08);
}

.logo-placeholder {
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
  .odoo-tech-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .odoo-tech-row:last-child {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .odoo-ai-tech-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .odoo-ai-card {
    padding: 24px;
  }

  .odoo-ai-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .odoo-ai-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .odoo-ai-brain-graphics {
    position: static;
    margin-top: -30px;
    align-self: flex-end;
  }

  .odoo-tech-card {
    padding: 24px;
  }

  .odoo-tech-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .odoo-tech-row:last-child {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Our Delivery Framework Section Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.delivery-framework-section {
  width: 100%;
  padding: 0px 0px 20px 0px;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

.delivery-framework-section *,
.delivery-framework-section *::before,
.delivery-framework-section *::after {
  box-sizing: border-box;
}

.framework-container {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 40px 24px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(148, 163, 184, 0.05);
}

.framework-header {
  text-align: center;
  margin-bottom: 50px;
}

.framework-title {
  color: #03083d;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.framework-subtitle {
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* Steps Layout and SVGs Alignment wrapper */
.framework-steps-wrapper {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.framework-line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.framework-line-svg svg {
  width: 100%;
  height: 100%;
}

.framework-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  z-index: 2;
}

.framework-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

/* Distinctive card outline styling for Step 1 */
.framework-step.step-highlighted {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px 8px;
  margin-top: -16px;
  background-color: #ffffff;
}

/* Steps badges and colors matching 8.png exactly */
.step-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.framework-step:hover .step-badge {
  transform: scale(1.15);
}

.badge-1 {
  background-color: #4d3df7;
}
.badge-2 {
  background-color: #d9267d;
}
.badge-3 {
  background-color: #f58220;
}
.badge-4 {
  background-color: #438e51;
}
.badge-5 {
  background-color: #2b84d4;
}
.badge-6 {
  background-color: #7b3df7;
}

.step-name {
  color: #03083d;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
  min-height: 36px; /* Balance alignment */
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-desc {
  color: #475569;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

/* ==========================================================================
   Responsive Architecture Overrides
   ========================================================================== */
@media (max-width: 1024px) {
  .framework-line-svg {
    display: none; /* Hide complex multi-vector canvas on mobile layouts */
  }

  .framework-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }

  .framework-step.step-highlighted {
    border: none;
    padding: 0 8px;
    margin-top: 0;
  }

  .step-name {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .framework-container {
    padding: 32px 16px;
  }

  .framework-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .step-badge {
    margin-bottom: 12px;
  }
}

/* Why Businesses & Partners Trust Synconics Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.trust-synconics-section {
  width: 100%;
  padding: 0px 0 20px 0;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

.trust-synconics-section *,
.trust-synconics-section *::before,
.trust-synconics-section *::after {
  box-sizing: border-box;
}

.trust-container {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid #eef2f9;
  border-radius: 16px;
  padding: 40px 24px;
  background-color: #ffffff;
  box-shadow: 0 4px 24px rgba(160, 175, 211, 0.06);
}

.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-title {
  color: #03083d;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
  transition: transform 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-icon-wrapper {
  color: #5544d6;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: color 0.25s ease;
}

.trust-item:hover .trust-icon-wrapper {
  color: #3b2be3;
}

.trust-icon {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.trust-item-title {
  color: #03083d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px 0;
  min-height: 34px; /* Ensures alignment harmony across grid rows */
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item-desc {
  color: #64748b;
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* ==========================================================================
   Responsive Architecture Overrides
   ========================================================================== */
@media (max-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 16px;
  }
  .trust-item-title {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }
  .trust-container {
    padding: 32px 16px;
  }
  .trust-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* FAQs and CTA Final Footer Section Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.odoo-faq-cta-section {
  width: 100%;
  padding: 0px 0px 20px 0px;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.odoo-faq-cta-section *,
.odoo-faq-cta-section *::before,
.odoo-faq-cta-section *::after {
  box-sizing: border-box;
}

.faq-cta-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: center;
}

/* ==========================================================================
   Left Panel: Frequently Asked Questions Accordions
   ========================================================================== */
.faq-card {
  background-color: #ffffff;
  border: 1px solid #eef2f9;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(160, 175, 210, 0.08);
}

.faq-main-title {
  color: #03083d;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: -0.01em;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 4px 0;
}

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

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s ease;
}

.faq-toggle:hover {
  color: white;
}

.faq-icon {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
  margin: 0;
  padding: 0 0 16px 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

/* Accordion Active States Triggered via JavaScript toggle */
.faq-item.active .faq-content {
  max-height: 120px; /* Safe upper threshold limit for context paragraphs */
}

.faq-item.active .faq-icon {
  color: #4d3df7;
}

/* ==========================================================================
   Right Panel: Ultimate CTA Action Pitch Box
   ========================================================================== */
.action-pitch-card {
  background-color: #03083d;
  background-image: linear-gradient(135deg, #020630 0%, #061175 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(3, 8, 61, 0.18);
}

.pitch-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px 0;
}

.pitch-subtitle {
  color: #b0b5e3;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 28px 0;
}

.pitch-inclusion-box {
  margin-bottom: 32px;
}

.inclusion-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 14px 0;
}

.inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inclusion-list li {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inc-check {
  color: #2ed573;
  font-weight: 700;
  font-size: 14px;
}

.pitch-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 250px;
  z-index: 2;
  margin-top: auto;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.pitch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-solid-purple {
  background-color: #4d3df7;
  color: #ffffff;
  border: 1px solid #4d3df7;
}

.btn-solid-purple:hover {
  background-color: #3b2be3;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  color: white;
}

.btn-arrow {
  font-size: 15px;
}

/* Neon Digital Minimal Outline Background Illustration */
.pitch-vector-bg {
  position: absolute;
  right: -10px;
  bottom: 80px;
  width: 130px;
  height: 100px;
  opacity: 0.25;
  pointer-events: none;
}

.pitch-vector-bg svg {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Architecture Overrides
   ========================================================================== */
@media (max-width: 1024px) {
  .faq-cta-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .faq-card {
    padding: 32px 20px;
  }

  .action-pitch-card {
    padding: 32px 24px;
  }

  .pitch-vector-bg {
    bottom: 20px;
    width: 140px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .pitch-actions-wrapper {
    max-width: 100%;
  }
}/* End custom CSS */