/* ===================================================================
   ODOO ENTERPRISE PRESENTATION - PT DIGITAL DECISION INDONESIA
   shadcn-inspired Professional Design with Odoo Colors
=================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===== CSS Variables - shadcn/Odoo inspired ===== */
:root {
  /* Odoo Brand Colors */
  --odoo-purple: #714B67;
  --odoo-purple-light: #875A7B;
  --odoo-purple-dark: #5c3d54;
  
  /* Neutral Colors - Dark Theme */
  --background: hsl(240 10% 3.9%);
  --foreground: hsl(0 0% 98%);
  --card: hsl(240 10% 3.9%);
  --card-foreground: hsl(0 0% 98%);
  --popover: hsl(240 10% 3.9%);
  --popover-foreground: hsl(0 0% 98%);
  --primary: hsl(320 25% 50%);
  --primary-foreground: hsl(0 0% 98%);
  --secondary: hsl(240 3.7% 15.9%);
  --secondary-foreground: hsl(0 0% 98%);
  --muted: hsl(240 3.7% 15.9%);
  --muted-foreground: hsl(240 5% 64.9%);
  --accent: hsl(240 3.7% 15.9%);
  --accent-foreground: hsl(0 0% 98%);
  --destructive: hsl(0 62.8% 30.6%);
  --destructive-foreground: hsl(0 0% 98%);
  --border: hsl(240 3.7% 15.9%);
  --input: hsl(240 3.7% 15.9%);
  --ring: hsl(320 25% 50%);
  
  /* Sizes */
  --radius: 0.5rem;
  --header-height: 4rem;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Light Theme */
[data-theme="light"] {
  --background: hsl(0 0% 100%);
  --foreground: hsl(240 10% 3.9%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(240 10% 3.9%);
  --popover: hsl(0 0% 100%);
  --popover-foreground: hsl(240 10% 3.9%);
  --primary: hsl(320 25% 45%);
  --primary-foreground: hsl(0 0% 98%);
  --secondary: hsl(240 4.8% 95.9%);
  --secondary-foreground: hsl(240 5.9% 10%);
  --muted: hsl(240 4.8% 95.9%);
  --muted-foreground: hsl(240 3.8% 46.1%);
  --accent: hsl(240 4.8% 95.9%);
  --accent-foreground: hsl(240 5.9% 10%);
  --destructive: hsl(0 84.2% 60.2%);
  --destructive-foreground: hsl(0 0% 98%);
  --border: hsl(240 5.9% 90%);
  --input: hsl(240 5.9% 90%);
  --ring: hsl(320 25% 45%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

p {
  color: var(--muted-foreground);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons - shadcn style ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  transition: all 150ms ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--odoo-purple);
  color: white;
}

.btn-primary:hover {
  background: var(--odoo-purple-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--accent);
}

/* ===== Navigation - Clean shadcn style ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--background);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}



/* Logo Theme Handling */
html[data-theme="dark"] .nav-logo img,
html[data-theme="dark"] .footer-brand img { filter: invert(1) brightness(10); }
html[data-theme="light"] .nav-logo img,
html[data-theme="light"] .footer-brand img { filter: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-menu a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  transition: all 150ms ease;
}

.nav-menu a:hover {
  color: var(--foreground);
  background: var(--accent);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 2px;
  border: 1px solid var(--border);
}

.lang-btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  border-radius: calc(var(--radius) - 2px);
  transition: all 150ms ease;
}

.lang-btn.active {
  background: var(--odoo-purple);
  color: white;
}

/* Theme Toggle */
.theme-toggle {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 150ms ease;
  font-size: 1rem;
}

.theme-toggle:hover {
  background: var(--accent);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--foreground);
  border-radius: 1px;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--odoo-purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--odoo-purple-light);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  height: 2.75rem;
  padding: 0 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--odoo-purple-light);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--odoo-purple);
  border-radius: var(--radius);
  font-size: 1.5rem;
}

.hero-card-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-card-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-card-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-card-module {
  padding: 0.5rem 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== Section Styling ===== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-title .highlight {
  color: var(--odoo-purple-light);
}

.section-description {
  color: var(--muted-foreground);
}

/* ===== Benefits Grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 150ms ease;
}

.benefit-card:hover {
  border-color: var(--odoo-purple);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: var(--radius);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Comparison Table ===== */
.comparison-section {
  background: var(--secondary);
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1rem 1.5rem;
  background: var(--odoo-purple);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.comparison-header span:first-child {
  text-align: left;
}

.comparison-header span:not(:first-child) {
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 0.875rem;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row span:first-child {
  color: var(--foreground);
}

.comparison-row span:not(:first-child) {
  text-align: center;
  font-size: 1rem;
}

.check { color: #22c55e; }
.cross { color: var(--muted-foreground); opacity: 0.4; }

/* ===== Modules Section ===== */
.modules-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.module-filter {
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 150ms ease;
}

.module-filter:hover,
.module-filter.active {
  background: var(--odoo-purple);
  border-color: var(--odoo-purple);
  color: white;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
}

.module-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 150ms ease;
}

.module-card:hover {
  border-color: var(--odoo-purple);
}

.module-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.module-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--odoo-purple);
  border-radius: var(--radius);
  font-size: 1rem;
  flex-shrink: 0;
}

.module-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.module-info p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.module-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: var(--odoo-purple);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-top: 0.25rem;
}

.module-features {
  padding: 1rem 1.25rem;
}

.module-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

.module-features li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.module-features li::before {
  content: '✓';
  color: #22c55e;
  font-size: 0.625rem;
  font-weight: bold;
}

.module-workflow {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--secondary);
}

.module-workflow h5 {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.mermaid {
  background: transparent !important;
  font-size: 0.75rem;
}

.mermaid svg {
  max-width: 100%;
  height: auto;
}

/* ===== Partner Section ===== */
.partner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partner-info {
  max-width: 500px;
}

.partner-highlights {
  list-style: none;
  margin: 2rem 0;
}

.partner-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.partner-highlights li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22c55e;
  color: white;
  font-size: 0.625rem;
  font-weight: bold;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.partner-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.partner-logo {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.partner-logo span {
  color: var(--odoo-purple-light);
}

.partner-tagline {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.partner-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.partner-badge {
  padding: 0.5rem 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 4rem 0;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--odoo-purple);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  color: white;
}

.cta-title {
  color: white;
  margin-bottom: 0.75rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--odoo-purple);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 150ms ease;
}

.contact-method:hover {
  border-color: var(--odoo-purple);
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: var(--radius);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-method-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.contact-method-info p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0;
}

.contact-form-container {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-form-container h3 {
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 150ms ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--odoo-purple);
  box-shadow: 0 0 0 3px rgba(113, 75, 103, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-brand h3 span {
  color: var(--odoo-purple-light);
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  max-width: 280px;
}

.footer-column h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  transition: color 150ms ease;
}

.footer-column a:hover {
  color: var(--foreground);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: all 150ms ease;
}

.footer-social a:hover {
  border-color: var(--odoo-purple);
  color: var(--odoo-purple);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-container,
  .partner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .partner-info {
    text-align: center;
    max-width: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
  }
  
  .hero {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .modules-grid {
    grid-template-columns: 1fr;
  }
  
  .module-features ul {
    grid-template-columns: 1fr;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }
  
  .cta-container {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Animation Classes ===== */
/* Animations are enhancement only - content is always visible */
.module-card,
.benefit-card,
.contact-method {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation delays */
.module-card:nth-child(1) { animation-delay: 0.05s; }
.module-card:nth-child(2) { animation-delay: 0.1s; }
.module-card:nth-child(3) { animation-delay: 0.15s; }
.module-card:nth-child(4) { animation-delay: 0.2s; }
.module-card:nth-child(5) { animation-delay: 0.25s; }
.module-card:nth-child(6) { animation-delay: 0.3s; }

/* ===== Module Detail Pages ===== */
.module-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--muted-foreground);
  transition: color 150ms ease;
}

.breadcrumb a:hover {
  color: var(--foreground);
}

.module-hero-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.module-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--odoo-purple);
  border-radius: var(--radius);
  font-size: 2.5rem;
  flex-shrink: 0;
}

.module-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.module-hero-subtitle {
  color: var(--odoo-purple-light);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}

.module-hero-desc {
  max-width: 600px;
  line-height: 1.7;
}

.module-hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.module-hero-stats .stat {
  text-align: center;
}

.module-hero-stats .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--odoo-purple-light);
  display: block;
}

.module-hero-stats .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 150ms ease;
}

.feature-card:hover {
  border-color: var(--odoo-purple);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
  background: var(--secondary);
}

.workflow-diagram {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  overflow-x: auto;
}

.workflow-diagram .mermaid {
  display: flex;
  justify-content: center;
}

.workflow-diagram svg {
  max-width: 100%;
  height: auto;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.use-case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.use-case-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.use-case-card p {
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* Integration Grid */
.integration-section {
  background: var(--secondary);
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 150ms ease;
  min-width: 120px;
}

.integration-card:hover {
  border-color: var(--odoo-purple);
  transform: translateY(-2px);
}

.integration-icon {
  font-size: 2rem;
}

.integration-card span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Comparison Page Styles */
.comparison-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  text-align: center;
}

.comparison-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.comparison-hero p {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-table {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

.pricing-table thead {
  background: var(--odoo-purple);
  color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  font-weight: 600;
}

.pricing-table tbody tr:hover {
  background: var(--secondary);
}

.pricing-table .highlight-row {
  background: rgba(113, 75, 103, 0.1);
}

.pricing-table .highlight-row td:first-child {
  font-weight: 600;
  color: var(--odoo-purple-light);
}

/* Responsive for module pages */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .module-hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .module-hero-icon {
    margin: 0 auto;
  }
  
  .module-hero-desc {
    margin: 0 auto;
  }
  
  .module-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .features-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    font-size: 0.75rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.5rem;
  }
}
