@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* ============================================================
   ODOO ERP — NURTURESPARK DESIGN SYSTEM
   Extends NurtureSpark v6 aesthetic with Odoo brand identity
   ============================================================ */

:root {
  /* NurtureSpark Core Palette */
  --gan-pink: #f72585;
  --gan-orange: #f6bd60;
  --gan-white: #f8f9fa;
  --gan-cyan: #00b4d8;
  --gan-violet: #7209b7;
  --gan-sky: #4cc9f0;
  --gan-red: #e63946;

  /* Odoo Brand Palette */
  --odoo-primary: #714B67;
  --odoo-primary-dark: #5A3B52;
  --odoo-primary-xdark: #3E2839;
  --odoo-primary-light: #8F6B85;
  --odoo-primary-pale: #F5EFF4;
  --odoo-secondary: #017E84;
  --odoo-secondary-dark: #00636A;
  --odoo-secondary-light: #21B8B8;
  --odoo-secondary-pale: #E0F5F5;
  --odoo-gray: #8F8F8F;
  --odoo-gray-light: #ECECEC;
  --odoo-accent-yellow: #F0D878;
  --odoo-accent-red: #E8505B;
  --odoo-accent-green: #21B893;
  --odoo-accent-blue: #435B99;

  /* Gradients */
  --odoo-gradient: linear-gradient(135deg, var(--odoo-primary) 0%, var(--odoo-secondary) 100%);
  --odoo-gradient-dark: linear-gradient(135deg, var(--odoo-primary-xdark) 0%, var(--odoo-primary) 100%);
  --odoo-hero-gradient: linear-gradient(135deg, #714B67 0%, #017E84 50%, #21B8B8 100%);
  --ns-text-gradient: linear-gradient(90deg, #f72585 0%, #f6bd60 100%);
  --ns-teal-gradient: linear-gradient(90deg, var(--odoo-secondary) 0%, var(--odoo-secondary-light) 100%);

  /* Functional */
  --primary: var(--odoo-primary);
  --primary-hover: var(--odoo-primary-dark);

  /* Backgrounds */
  --bg-light: #F7F5F6;
  --bg-white: #FFFFFF;
  --bg-subtle: #F0ECED;
  --bg-dark: #1A0F16;
  --bg-card: rgba(255, 255, 255, 0.7);

  /* Text */
  --text-main: #2C1A27;
  --text-muted: #6B5B66;
  --text-light: #9A8D96;

  /* Borders */
  --border-light: rgba(113, 75, 103, 0.1);
  --border-card: rgba(255, 255, 255, 0.6);
  --border-glow: rgba(113, 75, 103, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Source Sans 3', -apple-system, 'Segoe UI', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(113, 75, 103, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(1, 126, 132, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(33, 184, 184, 0.08) 0%, transparent 45%);
  background-attachment: fixed;
}

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

/* ─── LAYOUT ─── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  background: transparent !important;
  border: none !important;
}

section>.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 40px;
  padding: 60px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-main);
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1.5px;
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.5px;
}

h4 {
  font-size: 22px;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

i[class^="ri-"] {
  font-size: 1.2em; /* Increase icon sizes slightly across the board */
}

.text-gradient {
  background: var(--ns-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-odoo {
  background: var(--odoo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-teal {
  background: var(--ns-teal-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: rgba(113, 75, 103, 0.08);
  color: var(--odoo-primary);
  border: 1px solid rgba(113, 75, 103, 0.15);
}

.badge-teal {
  background: rgba(1, 126, 132, 0.08);
  color: var(--odoo-secondary);
  border-color: rgba(1, 126, 132, 0.2);
}

.badge-pink {
  background: rgba(247, 37, 133, 0.08);
  color: var(--gan-pink);
  border-color: rgba(247, 37, 133, 0.2);
}

.badge-green {
  background: rgba(33, 184, 147, 0.08);
  color: var(--odoo-accent-green);
  border-color: rgba(33, 184, 147, 0.2);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--odoo-primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(113, 75, 103, 0.35);
}

.btn-primary:hover {
  background: var(--odoo-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(113, 75, 103, 0.4);
}

.btn-secondary {
  background: var(--odoo-secondary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(1, 126, 132, 0.35);
}

.btn-secondary:hover {
  background: var(--odoo-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(1, 126, 132, 0.4);
}

.btn-gradient {
  background: var(--odoo-hero-gradient);
  color: #fff;
  box-shadow: 0 6px 24px rgba(113, 75, 103, 0.25);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(1, 126, 132, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(113, 75, 103, 0.4);
  color: var(--odoo-primary);
}

.btn-outline:hover {
  background: var(--odoo-primary);
  border-color: var(--odoo-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--odoo-primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1380px;
  z-index: 1000;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(113, 75, 103, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  height: 36px;
}

.logo-container .logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
}

.logo-container .logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--odoo-primary);
  letter-spacing: 0.5px;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  position: relative;
}

.nav-links>li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--odoo-primary-pale);
  color: var(--odoo-primary);
}

/* Mega Menu Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 680px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(113, 75, 103, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
}

/* Bridge the gap to prevent hover loss */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.nav-links li:hover>.nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mega-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--odoo-primary);
  margin-bottom: 8px;
  padding: 0 8px;
  grid-column: 1 / -1;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: all 0.2s;
  color: var(--text-main);
  font-size: 13px;
  font-weight: 500;
}

.mega-item:hover {
  background: var(--odoo-primary-pale);
  color: var(--odoo-primary);
}

.mega-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.mega-item-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Small dropdown */
.nav-dropdown-sm {
  min-width: 280px;
  left: 0;
  transform: translateX(0) translateY(8px);
}

.nav-links li:hover>.nav-dropdown-sm {
  transform: translateX(0) translateY(0);
}

.nav-dropdown-sm a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-main);
  transition: all 0.2s;
  margin-bottom: 2px;
}

.nav-dropdown-sm a:hover {
  background: var(--odoo-primary-pale);
  color: var(--odoo-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-trigger {
  display: none;
  background: transparent;
  border: 1px solid rgba(113, 75, 103, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--text-main);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ─── FIXED BG BLOBS ─── */
.fixed-background-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--odoo-primary);
  top: -10%;
  left: -5%;
  animation: blobFloat 12s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--odoo-secondary);
  bottom: -10%;
  right: -5%;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--odoo-secondary-light);
  top: 40%;
  right: 10%;
  animation: blobFloat 10s ease-in-out infinite 2s;
  opacity: 0.1;
}

.shape-4 {
  width: 300px;
  height: 300px;
  background: var(--odoo-accent-yellow);
  bottom: 30%;
  left: 5%;
  animation: blobFloat 18s ease-in-out infinite 4s;
  opacity: 0.08;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.97) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(113, 75, 103, 0.1);
  border: 1px solid rgba(113, 75, 103, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--odoo-primary);
  margin-bottom: 28px;
}

.hero-eyebrow img {
  height: 18px;
  object-fit: contain;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p.lead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 30px 80px rgba(113, 75, 103, 0.15);
  overflow: hidden;
  position: relative;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--odoo-primary) 0%, var(--odoo-primary-dark) 100%);
}

.dot-red,
.dot-yellow,
.dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F56;
}

.dot-yellow {
  background: #FFBD2E;
}

.dot-green {
  background: #27C93F;
}

.dashboard-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 8px;
  font-weight: 500;
}

.dashboard-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.d-metric {
  text-align: center;
  padding: 16px 12px;
  background: var(--bg-subtle);
  border-radius: 12px;
}

.d-metric-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--odoo-primary);
}

.d-metric-lbl {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 0 20px 20px;
}

.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--odoo-secondary), var(--odoo-secondary-light));
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--odoo-secondary-pale);
  color: var(--odoo-secondary);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

/* Float Cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.float-card-2 {
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(113, 75, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--odoo-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.float-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.float-sub {
  font-size: 12px;
  color: var(--text-light);
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-top: 16px;
  margin-bottom: 20px;
}

.section-header .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── GRID SYSTEMS ─── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
  gap: 16px;
}

/* ─── CARDS ─── */
.card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(113, 75, 103, 0.08);
  border-color: rgba(113, 75, 103, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  flex-shrink: 0;
}

.card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.icon-purple {
  background: rgba(113, 75, 103, 0.1);
  color: var(--odoo-primary);
}

.icon-teal {
  background: rgba(1, 126, 132, 0.1);
  color: var(--odoo-secondary);
}

.icon-green {
  background: rgba(33, 184, 147, 0.08);
  color: var(--odoo-accent-green);
}

.icon-blue {
  background: rgba(67, 91, 153, 0.1);
  color: var(--odoo-accent-blue);
}

.icon-yellow {
  background: rgba(240, 216, 120, 0.2);
  color: #B8960D;
}

.icon-red {
  background: rgba(232, 80, 91, 0.08);
  color: var(--odoo-accent-red);
}

.icon-pink {
  background: rgba(247, 37, 133, 0.08);
  color: var(--gan-pink);
}

.icon-orange {
  background: rgba(246, 189, 96, 0.15);
  color: #C89B2B;
}

/* ─── STATS ─── */
.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--odoo-primary);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ─── PRODUCT CARDS ─── */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(113, 75, 103, 0.1);
  border-color: rgba(113, 75, 103, 0.25);
}

.product-card h4 {
  font-size: 16px;
  margin: 0;
}

.product-card p {
  font-size: 13px;
  margin: 0;
  color: var(--text-muted);
  flex: 1;
}

.product-card-link {
  font-size: 13px;
  color: var(--odoo-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ─── APPS GRID ─── */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  justify-items: center;
}

.app-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.app-entry:hover {
  background: rgba(113, 75, 103, 0.06);
  transform: translateY(-4px);
}

.app-entry img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  object-fit: contain;
}

.app-entry span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

/* ─── INDUSTRY CARDS ─── */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(113, 75, 103, 0.08);
  border-color: rgba(113, 75, 103, 0.2);
}

.industry-icon {
  font-size: 36px;
}

.industry-card h4 {
  font-size: 16px;
  margin: 0;
}

.industry-card p {
  font-size: 13px;
  margin: 0;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.quote-mark {
  font-size: 48px;
  color: var(--odoo-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--odoo-primary-pale);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-main);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FEATURE LIST ─── */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(1, 126, 132, 0.1);
  color: var(--odoo-secondary);
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── MARQUEE ─── */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  padding: 10px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  animation: scroll 40s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  height: 45px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  margin: 0 40px;
  filter: grayscale(100%) opacity(0.7);
  opacity: 0.6;
  transition: all 0.3s;
}

.marquee-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
  cursor: pointer;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ─── PRICING ─── */
.pricing-highlight {
  position: relative;
  display: inline-block;
}

.pricing-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: rgba(1, 126, 132, 0.15);
  border-radius: 4px;
  z-index: -1;
}

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--odoo-primary), var(--odoo-secondary), var(--odoo-accent-blue));
}

footer::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(113, 75, 103, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

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

.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.footer-socials a:hover {
  background: var(--odoo-primary);
  color: #fff;
}

/* ─── SCROLL REVEAL ─── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--odoo-gradient);
  border-radius: 40px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner h2 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ─── MOBILE RESPONSIVE ─── */
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-2col {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .menu-trigger {
    display: flex;
  }

  section>.container {
    padding: 40px 24px;
    border-radius: 28px;
  }

  .container {
    padding: 0 20px;
  }

  .cta-banner {
    padding: 60px 32px;
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .dashboard-mockup {
    display: none;
  }

  .float-card {
    display: none;
  }

  h1 {
    letter-spacing: -1px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── MOBILE NAV ─── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: #fff;
  z-index: 1001;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.mobile-nav-panel a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}

.mobile-nav-panel a:hover {
  color: var(--odoo-primary);
}

/* App Micro-Animations */
.micro-anim-container {
  width: 100%;
  height: 80px;
  border-radius: 12px;
  background: rgba(255,255,255,0.4);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.5);
}

/* Accounting: Syncing Ledgers */
.anim-acc-ledger {
  width: 24px;
  height: 32px;
  background: var(--odoo-primary);
  border-radius: 4px;
  position: relative;
  margin: 0 16px;
}
.anim-acc-data {
  width: 8px;
  height: 8px;
  background: var(--odoo-secondary);
  border-radius: 50%;
  position: absolute;
  animation: data-sync 2s infinite ease-in-out;
}
@keyframes data-sync {
  0% { transform: translateX(-30px); opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateX(30px); opacity: 0; }
}

/* Invoicing: Paid Stamp */
.anim-inv-doc {
  width: 40px;
  height: 50px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 6px;
  gap: 4px;
}
.anim-inv-line { height: 4px; background: #eee; border-radius: 2px; }
.anim-inv-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(2) rotate(-15deg);
  color: var(--odoo-accent-green);
  border: 2px solid var(--odoo-accent-green);
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  animation: stamp-down 3s infinite ease-out;
}
@keyframes stamp-down {
  0%, 20% { transform: translate(-50%, -50%) scale(3) rotate(-15deg); opacity: 0; }
  30%, 80% { transform: translate(-50%, -50%) scale(1) rotate(-15deg); opacity: 1; }
  100% { opacity: 0; }
}

/* Expenses: Receipt Scan */
.anim-exp-phone {
  width: 34px; height: 50px;
  border: 3px solid var(--odoo-primary);
  border-radius: 6px;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.anim-exp-receipt {
  width: 22px; height: 40px;
  background: #fff;
  border: 1px dashed #ccc;
  animation: scan-receipt 3s infinite ease-in-out;
}
@keyframes scan-receipt {
  0%, 10% { transform: translateY(45px); }
  50%, 80% { transform: translateY(5px); }
  100% { transform: translateY(45px); }
}

/* Spreadsheet: Bar Chart */
.anim-bi-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 40px;
}
.anim-bi-bar {
  width: 14px; border-radius: 3px 3px 0 0;
}
.anim-bi-bar:nth-child(1) { background: var(--odoo-primary-light); animation: bar-grow 2s infinite alternate ease-in-out; }
.anim-bi-bar:nth-child(2) { background: var(--odoo-secondary); animation: bar-grow 2.5s infinite alternate ease-in-out; }
.anim-bi-bar:nth-child(3) { background: var(--odoo-primary); animation: bar-grow 3s infinite alternate ease-in-out; }
@keyframes bar-grow {
  0% { height: 10px; }
  100% { height: 40px; }
}

/* Documents: Vault sliding */
.anim-doc-folder {
  width: 44px; height: 34px;
  background: var(--odoo-primary-light);
  border-radius: 4px 4px 0 0;
  position: relative;
  margin-top: 10px;
}
.anim-doc-folder::before {
  content: ''; position: absolute; top: -6px; left: 0;
  width: 18px; height: 6px; background: var(--odoo-primary-light);
  border-radius: 4px 4px 0 0;
}
.anim-doc-file {
  width: 26px; height: 32px; background: #fff;
  position: absolute; top: -20px; left: 9px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  animation: file-slide 2.5s infinite ease-in-out;
}
@keyframes file-slide {
  0%, 10% { transform: translateY(-25px); opacity: 0; }
  30%, 80% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

/* Sign: Drawing line */
.anim-sign-doc {
  width: 40px; height: 50px; background: #fff;
  border-radius: 4px; padding: 10px 8px; position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.anim-sign-line { height: 4px; background: #eee; border-radius: 2px; margin-bottom: 6px; width: 100%; }
.anim-sign-line:nth-child(2) { width: 80%; }
.anim-sign-pen {
  position: absolute; bottom: 12px; left: 10px;
  width: 0; height: 2px; background: var(--odoo-primary);
  animation: sign-draw 3s infinite ease-in-out;
}
@keyframes sign-draw {
  0%, 20% { width: 0; opacity: 1; }
  60%, 80% { width: 20px; opacity: 1; }
  100% { opacity: 0; width: 20px; }
}


/* Fix alignment for dropdowns */
.nav-links li { position: relative; }
