/* Custom Odoo page sections — high-impact layout. */

/* The Odoo page has a sticky header. Anchored scrolls (e.g. arriving from
   "Customer Login" with /#odoo-form-section) must leave room for it so the
   target section appears below the header rather than behind it. The header
   height shrinks at smaller breakpoints, so scroll-padding follows. */
html {
  scroll-padding-top: 88px;
  scroll-behavior: smooth;
}
@media (max-width: 880px) { html { scroll-padding-top: 80px; } }
@media (max-width: 640px) { html { scroll-padding-top: 60px; } }
@media (max-width: 380px) { html { scroll-padding-top: 50px; } }

:root {
  --odoo-plum: #875a7b;
  --odoo-plum-deep: #5a3c52;
  --odoo-plum-bright: #c69ec0;
  --odoo-bg-dark: #0e0a14;
  --odoo-bg-light: #f7f4ef;
  --odoo-ink: #14101a;
  --odoo-mute: #6b6175;
}

.odoo-page {
  font-family: 'Inter', 'Helvetica Neue', system-ui, -apple-system, Arial, sans-serif;
  color: var(--odoo-ink);
  background: #ffffff;
  overflow-x: hidden;
}

.odoo-page__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.odoo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--odoo-plum);
}

.odoo-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--odoo-plum);
}

.odoo-eyebrow--light { color: rgba(255, 255, 255, 0.85); }
.odoo-eyebrow--light::before { background: var(--odoo-plum-bright); box-shadow: 0 0 12px var(--odoo-plum-bright); }

.odoo-page .odoo-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  color: var(--odoo-ink);
}

.odoo-page .odoo-title--light { color: #ffffff; }
.odoo-page .odoo-title--coral { color: #ff5e3a; }

/* ─── 1. ANNOUNCEMENT ─────────────────────────────────────────── */

.odoo-announcement {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 20%, #2a1b34 0%, transparent 60%),
              radial-gradient(1000px 500px at 80% 90%, #4a2d5a 0%, transparent 60%),
              linear-gradient(180deg, #0e0a14 0%, #1a0f24 100%);
  color: #ffffff;
  padding: 120px 28px;
  overflow: hidden;
  isolation: isolate;
}

.odoo-announcement__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.odoo-announcement__orb--a {
  width: 420px; height: 420px;
  background: var(--odoo-plum);
  top: -120px; left: -100px;
  animation: odoo-float-a 18s ease-in-out infinite;
}

.odoo-announcement__orb--b {
  width: 360px; height: 360px;
  background: #6e3a8c;
  bottom: -160px; right: -80px;
  animation: odoo-float-b 22s ease-in-out infinite;
}

@keyframes odoo-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(60px, 40px) scale(1.1); }
}
@keyframes odoo-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, -60px) scale(1.08); }
}

.odoo-announcement__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.odoo-announcement__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
}

.odoo-announcement__pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6ba6;
  box-shadow: 0 0 12px rgba(255, 107, 166, 0.9);
  animation: odoo-pulse 1.6s ease-in-out infinite;
}

@keyframes odoo-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.odoo-announcement__title {
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #d8c5e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.odoo-announcement__highlight {
  background: linear-gradient(120deg, #ff8fbe 0%, #c69ec0 50%, #b794d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.odoo-announcement__text {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

/* ─── 2. CLIENTS — INFINITE MARQUEE ──────────────────────────── */

.odoo-clients {
  background: var(--odoo-bg-light);
  padding: 96px 0;
  text-align: center;
}

.odoo-clients__heading {
  padding: 0 28px;
  margin-bottom: 56px;
}

.odoo-clients__lede {
  font-size: 17px;
  color: var(--odoo-mute);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.odoo-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.odoo-marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: odoo-marquee 36s linear infinite;
}

.odoo-marquee:hover .odoo-marquee__track {
  animation-play-state: paused;
}

@keyframes odoo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.odoo-client {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(20, 16, 26, 0.06);
  border-radius: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--odoo-mute);
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.odoo-client:hover {
  transform: translateY(-3px);
  color: var(--odoo-plum);
  border-color: rgba(135, 90, 123, 0.4);
  box-shadow: 0 16px 40px rgba(135, 90, 123, 0.16);
}

/* ─── 3. FORM — GLASS CARD ON GRID ───────────────────────────── */

.odoo-form-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fill the viewport area below the 88px sticky header. With
     scroll-padding-top above, the browser anchor-scrolls so the section
     starts just below the header — and at this min-height the section's
     vertical center coincides with the visible-area center. */
  min-height: calc(100vh - 88px);
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(135, 90, 123, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #14101a 0%, #1f1429 100%);
  padding: 60px 28px;
  overflow: hidden;
  isolation: isolate;
}

.odoo-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(closest-side, #000 0%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 0%, transparent 100%);
  z-index: -1;
}

.odoo-form-card {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.odoo-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.3), transparent 30%, transparent 70%, rgba(198, 158, 192, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.odoo-form__title {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 10px;
}

.odoo-form__lede {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px;
  font-size: 15px;
}

.odoo-form__row {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.odoo-form__row:focus-within {
  border-color: var(--odoo-plum-bright);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(198, 158, 192, 0.15), 0 12px 30px rgba(135, 90, 123, 0.25);
}

.odoo-page .odoo-form__input,
.odoo-page input.odoo-form__input {
  flex: 1;
  min-width: 0;
  padding: 14px 22px;
  font: inherit;
  font-size: 16px;
  color: #ffffff;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
}

.odoo-page .odoo-form__input:focus,
.odoo-page input.odoo-form__input:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.odoo-page .odoo-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.odoo-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--odoo-plum) 0%, #6e3a8c 100%);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  flex: 0 0 auto;
}

.odoo-form__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(135, 90, 123, 0.5);
}

.odoo-form__submit:active { transform: translateY(0); }

.odoo-form__submit::after {
  content: '→';
  transition: transform 0.2s ease;
}

.odoo-form__submit:hover::after { transform: translateX(3px); }

.odoo-form__hint {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Form: loading state & welcome/redirect card ─────────────── */

.odoo-form-card.is-loading {
  pointer-events: none;
}
.odoo-form-card.is-loading .odoo-form__submit {
  opacity: 0.7;
  position: relative;
}
.odoo-form-card.is-loading .odoo-form__submit::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: odoo-spin 0.8s linear infinite;
  transform: none;
}
@keyframes odoo-spin {
  to { transform: rotate(360deg); }
}

.odoo-form-card.is-welcome {
  text-align: center;
  animation: odoo-welcome-in 0.4s ease;
}

@keyframes odoo-welcome-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.odoo-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  padding: 8px 0;
}

.odoo-welcome__logo {
  display: block;
  max-width: 240px;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.odoo-welcome__greeting {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.odoo-welcome__name {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.odoo-welcome__msg {
  margin: 4px 0 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.odoo-welcome__spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--odoo-plum-bright);
  animation: odoo-spin 0.9s linear infinite;
  margin-top: 6px;
}

/* ─── 4. TESTIMONIALS — BENTO GRID ───────────────────────────── */

.odoo-testimonials {
  background: var(--odoo-bg-light);
  padding: 120px 28px;
  position: relative;
  overflow: hidden;
}

.odoo-testimonials__quote-decor {
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 480px;
  line-height: 1;
  font-weight: 700;
  color: rgba(135, 90, 123, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.odoo-testimonials__heading {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
  z-index: 1;
}

.odoo-testimonials__lede {
  font-size: 17px;
  color: var(--odoo-mute);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.odoo-testimonials__bento {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 1;
}

.odoo-testimonial {
  background: #ffffff;
  border: 1px solid rgba(20, 16, 26, 0.06);
  border-radius: 22px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  overflow: hidden;
}

.odoo-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(20, 16, 26, 0.1);
}

.odoo-testimonial--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--odoo-plum) 0%, #6e3a8c 100%);
  color: #ffffff;
  padding: 48px;
}

.odoo-testimonial--featured::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 30px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 240px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.odoo-testimonial__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #f5b400;
  font-size: 16px;
  letter-spacing: 2px;
}

.odoo-testimonial--featured .odoo-testimonial__rating {
  color: #ffd166;
}

.odoo-testimonial__quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--odoo-ink);
  margin: 0 0 28px;
  flex-grow: 1;
}

.odoo-testimonial--featured .odoo-testimonial__quote {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
}

.odoo-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.odoo-testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  background: #eee;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.odoo-testimonial--featured .odoo-testimonial__avatar {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.odoo-testimonial__name {
  font-weight: 700;
  font-size: 15px;
}

.odoo-testimonial__role {
  font-size: 13px;
  color: var(--odoo-mute);
  margin-top: 2px;
}

.odoo-testimonial--featured .odoo-testimonial__role {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 880px) {
  .odoo-testimonials__bento {
    grid-template-columns: 1fr;
  }
  .odoo-testimonial--featured {
    grid-row: auto;
  }
}

/* ─── TOAST NOTIFICATIONS (top-right) ─────────────────────────── */

.odoo-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}

.odoo-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 400px;
  padding: 14px 16px 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  animation: odoo-toast-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.odoo-toast--error {
  background: #fff1ec;
  border-color: rgba(255, 94, 58, 0.25);
  color: #6a1f0a;
}

.odoo-toast--success {
  background: #ebf8f3;
  border-color: rgba(26, 163, 122, 0.25);
  color: #0d4f3a;
}

.odoo-toast--info {
  background: #f4ecf3;
  border-color: rgba(135, 90, 123, 0.25);
  color: #4a2f43;
}

.odoo-toast.is-out {
  animation: odoo-toast-out 0.28s ease forwards;
}

.odoo-toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.odoo-toast--error::before  { background: #ff5e3a; }
.odoo-toast--success::before { background: #1aa37a; }
.odoo-toast--info::before    { background: #875a7b; }

.odoo-toast__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-left: 6px;
}

.odoo-toast--error .odoo-toast__icon  { background: rgba(255, 94, 58, 0.18); color: #c43a13; }
.odoo-toast--success .odoo-toast__icon { background: rgba(26, 163, 122, 0.18); color: #117a59; }
.odoo-toast--info .odoo-toast__icon    { background: rgba(135, 90, 123, 0.20); color: #6b4263; }

.odoo-toast__msg {
  flex: 1;
  min-width: 0;
}

.odoo-toast__close {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  opacity: 0.55;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.odoo-toast__close:hover {
  background: rgba(0, 0, 0, 0.06);
  opacity: 1;
}

@keyframes odoo-toast-in {
  0%   { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

@keyframes odoo-toast-out {
  0%   { transform: translateX(0);    opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

@media (max-width: 480px) {
  .odoo-toast-container {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .odoo-toast {
    min-width: 0;
    max-width: 100%;
  }
}

/* ─── RESPONSIVE: tablet ──────────────────────────────────────── */
@media (max-width: 880px) {
  .odoo-announcement {
    padding: 88px 24px;
  }
  .odoo-clients {
    padding: 80px 0;
  }
  .odoo-clients__heading {
    padding: 0 24px;
    margin-bottom: 44px;
  }
  .odoo-form-section {
    padding: 48px 24px;
  }
  .odoo-form-card {
    padding: 44px 36px;
  }
  .odoo-testimonials {
    padding: 88px 24px;
  }
  .odoo-testimonial--featured {
    padding: 36px;
  }
  .odoo-testimonials__quote-decor {
    font-size: 360px;
  }
}

/* ─── RESPONSIVE: mobile ──────────────────────────────────────── */
@media (max-width: 640px) {
  .odoo-announcement {
    padding: 72px 20px;
  }
  .odoo-announcement__pill {
    padding: 7px 14px;
    font-size: 11px;
  }
  .odoo-announcement__text {
    font-size: 15px;
  }

  .odoo-clients {
    padding: 64px 0;
  }
  .odoo-clients__heading {
    padding: 0 20px;
    margin-bottom: 36px;
  }
  .odoo-clients__lede {
    font-size: 15px;
  }
  .odoo-client {
    width: 150px;
    height: 78px;
    font-size: 11px;
    border-radius: 12px;
  }
  .odoo-marquee__track {
    gap: 16px;
  }

  .odoo-form-section {
    padding: 40px 18px;
    /* On mobile the sticky header is shorter (≈58px), so refit min-height. */
    min-height: calc(100vh - 58px);
  }
  .odoo-form-card {
    padding: 36px 24px;
    border-radius: 20px;
  }
  .odoo-form__title { font-size: 22px; }
  .odoo-form__lede  { font-size: 14px; margin-bottom: 24px; }
  .odoo-form__row {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 8px;
    gap: 6px;
  }
  .odoo-form__input {
    padding: 14px 16px;
    font-size: 15px;
  }
  .odoo-form__submit {
    width: 100%;
    border-radius: 12px;
    padding: 14px 22px;
    justify-content: center;
  }
  .odoo-form__hint {
    margin-top: 16px;
    font-size: 12px;
  }

  .odoo-testimonials {
    padding: 72px 20px;
  }
  .odoo-testimonials__heading {
    margin-bottom: 40px;
  }
  .odoo-testimonials__lede {
    font-size: 15px;
  }
  .odoo-testimonial {
    padding: 28px 24px;
    border-radius: 18px;
  }
  .odoo-testimonial--featured {
    padding: 32px 26px;
  }
  .odoo-testimonial__quote {
    font-size: 16px;
  }
  .odoo-testimonial--featured .odoo-testimonial__quote {
    font-size: 19px;
  }
  .odoo-testimonial--featured::before {
    font-size: 180px;
    top: -28px;
    right: 16px;
  }
  .odoo-testimonials__quote-decor {
    font-size: 280px;
    top: -20px;
    right: -10px;
  }
}

/* ─── RESPONSIVE: small mobile (≤480px) ───────────────────────── */
@media (max-width: 480px) {
  .odoo-announcement {
    padding: 60px 16px;
  }
  .odoo-clients {
    padding: 56px 0;
  }
  .odoo-client {
    width: 130px;
    height: 68px;
    font-size: 10px;
  }

  .odoo-form-section {
    padding: 28px 14px;
  }
  .odoo-form-card {
    padding: 28px 20px;
  }

  .odoo-testimonials {
    padding: 60px 16px;
  }
  .odoo-testimonial {
    padding: 24px 20px;
  }
  .odoo-testimonial--featured {
    padding: 28px 22px;
  }
  .odoo-testimonial__avatar {
    width: 44px;
    height: 44px;
  }
  .odoo-testimonials__quote-decor {
    display: none; /* big serif quote watermark just adds visual noise on tiny screens */
  }
}
