/* OEM/ODM Services V3 */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm/DM-Sans-300.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm/DM-Sans-400.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dm/DM-Sans-500.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm/DM-Sans-300-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm/DM-Serif-Display-400.ttf') format('truetype');
}

@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm/DM-Serif-Display-Italic-400.ttf') format('truetype');
}

:root {
  --oem-v3-black: #0d0d0d;
  --oem-v3-gray-900: #1a1a1a;
  --oem-v3-gray-500: #7a7a7a;
  --oem-v3-gray-200: #e8e8e8;
  --oem-v3-white: #fafaf8;
  --oem-v3-serif: 'DM Serif Display', Georgia, serif;
  --oem-v3-sans: 'DM Sans', sans-serif;
}

.oem-odm-v3,
.oem-odm-v3 * { box-sizing: border-box; }

.oem-odm-v3 {
  font-family: var(--oem-v3-sans);
  background: var(--oem-v3-white);
  color: var(--oem-v3-black);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.oem-odm-v3 .oem-v3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

.oem-odm-v3 .oem-v3-hero {
  padding-top: 30px;
  padding-bottom: 30px;
}

.oem-odm-v3 .oem-v3-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}


.oem-odm-v3 .oem-v3-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oem-v3-gray-500);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.oem-odm-v3 .oem-v3-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--oem-v3-gray-500);
}

.oem-odm-v3 h1,
.oem-odm-v3 .oem-v3-title {
  font-family: var(--oem-v3-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.oem-odm-v3 h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--oem-v3-black);
}

.oem-odm-v3 h1 em {
  font-style: italic;
  color: var(--oem-v3-gray-500);
}

.oem-odm-v3 .oem-v3-hero-right {
  padding-bottom: 0.5rem;
}

.oem-odm-v3 .oem-v3-hero-desc {
  font-size: 1rem;
  color: var(--oem-v3-gray-500);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 2.5rem;
}

.oem-odm-v3 .oem-v3-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.oem-odm-v3 .oem-v3-btn-primary,
.oem-odm-v3 .oem-v3-btn-ghost {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.oem-odm-v3 .oem-v3-btn-primary {
  color: #ffffff !important;
  background: var(--oem-v3-black);
  padding: 0.9rem 2rem;
  display: inline-block;
  transition: opacity 0.2s;
}

.oem-odm-v3 .oem-v3-btn-primary:visited,
.oem-odm-v3 .oem-v3-btn-primary:hover,
.oem-odm-v3 .oem-v3-btn-primary:focus {
  color: #ffffff !important;
}

.oem-odm-v3 .oem-v3-btn-primary:hover { opacity: 0.7; }

.oem-odm-v3 .oem-v3-btn-ghost {
  color: var(--oem-v3-gray-500);
  border-bottom: 1px solid var(--oem-v3-gray-200);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.oem-odm-v3 .oem-v3-btn-ghost:hover {
  color: var(--oem-v3-black);
  border-color: var(--oem-v3-black);
}

.oem-odm-v3 .oem-v3-divider {
  width: 100%;
  height: 1px;
  background: var(--oem-v3-gray-200);
}

.oem-odm-v3 .oem-v3-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.oem-odm-v3 .oem-v3-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 500px;
}

.oem-odm-v3 .oem-v3-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--oem-v3-gray-200);
  border: 1px solid var(--oem-v3-gray-200);
}

.oem-odm-v3 .oem-v3-service-card {
  background: var(--oem-v3-white);
  padding: 3rem;
}

.oem-odm-v3 .oem-v3-service-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oem-v3-gray-500);
  margin-bottom: 1.5rem;
}

.oem-odm-v3 .oem-v3-service-card h3 {
  font-family: var(--oem-v3-serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.oem-odm-v3 .oem-v3-service-card p {
  font-size: 0.9rem;
  color: var(--oem-v3-gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.oem-odm-v3 .oem-v3-service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.oem-odm-v3 .oem-v3-service-card li {
  font-size: 0.82rem;
  color: var(--oem-v3-gray-500);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.oem-odm-v3 .oem-v3-service-card li::before {
  content: '—';
  color: var(--oem-v3-gray-200);
  flex-shrink: 0;
}

.oem-odm-v3 .oem-v3-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--oem-v3-gray-200);
  border: 1px solid var(--oem-v3-gray-200);
}

.oem-odm-v3 .oem-v3-process-item {
  background: var(--oem-v3-white);
  padding: 2.5rem 2rem;
}

.oem-odm-v3 .oem-v3-process-num {
  font-family: var(--oem-v3-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--oem-v3-gray-200);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.oem-odm-v3 .oem-v3-process-item h4 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--oem-v3-black);
}

.oem-odm-v3 .oem-v3-process-item p {
  font-size: 0.78rem;
  color: var(--oem-v3-gray-500);
  line-height: 1.7;
}

.oem-odm-v3 .oem-v3-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--oem-v3-gray-200);
  border: 1px solid var(--oem-v3-gray-200);
}

.oem-odm-v3 .oem-v3-stat-item {
  background: var(--oem-v3-white);
  padding: 3rem 2.5rem;
}

.oem-odm-v3 .oem-v3-stat-value {
  font-family: var(--oem-v3-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.oem-odm-v3 .oem-v3-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oem-v3-black);
  margin-bottom: 0.5rem;
}

.oem-odm-v3 .oem-v3-stat-desc {
  font-size: 0.78rem;
  color: var(--oem-v3-gray-500);
  line-height: 1.6;
}

.oem-odm-v3 .oem-v3-faq-list {
  display: flex;
  flex-direction: column;
}

.oem-odm-v3 .oem-v3-faq-item {
  border-top: 1px solid var(--oem-v3-gray-200);
}

.oem-odm-v3 .oem-v3-faq-item:last-child {
  border-bottom: 1px solid var(--oem-v3-gray-200);
}

.oem-odm-v3 .oem-v3-faq-item summary {
  list-style: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--oem-v3-sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--oem-v3-black);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.oem-odm-v3 .oem-v3-faq-item summary::-webkit-details-marker { display: none; }
.oem-odm-v3 .oem-v3-faq-item summary:hover { color: var(--oem-v3-gray-500); }

.oem-odm-v3 .oem-v3-faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
  margin-left: 2rem;
  transition: transform 0.3s ease;
}

.oem-odm-v3 .oem-v3-faq-icon::before,
.oem-odm-v3 .oem-v3-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.oem-odm-v3 .oem-v3-faq-icon::before {
  width: 16px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.oem-odm-v3 .oem-v3-faq-icon::after {
  width: 1px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s;
}

.oem-odm-v3 details[open] .oem-v3-faq-icon { transform: rotate(45deg); }

.oem-odm-v3 .oem-v3-faq-answer p {
  font-size: 0.85rem;
  color: var(--oem-v3-gray-500);
  line-height: 1.8;
  padding-bottom: 1.75rem;
  max-width: 680px;
}

.oem-odm-v3 .oem-v3-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.oem-odm-v3 .oem-v3-contact-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--oem-v3-gray-500);
  max-width: 460px;
}

.oem-odm-v3 .oem-v3-form-wrap {
  border: 1px solid var(--oem-v3-gray-200);
  padding: 1.5rem;
  background: #fff;
}

.oem-odm-v3 .oem-v3-form-wrap .wpforms-field-label {
  font-size: 0.72rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oem-odm-v3 .oem-v3-form-wrap .wpforms-field input,
.oem-odm-v3 .oem-v3-form-wrap .wpforms-field textarea,
.oem-odm-v3 .oem-v3-form-wrap .wpforms-field select {
  border: 1px solid var(--oem-v3-gray-200) !important;
  min-height: 44px;
}

.oem-odm-v3 .oem-v3-form-wrap .wpforms-submit-container button {
  background: var(--oem-v3-black) !important;
  color: var(--oem-v3-white) !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.9rem 1.5rem !important;
}

@media (max-width: 900px) {
  .oem-odm-v3 .oem-v3-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .oem-odm-v3 .oem-v3-hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .oem-odm-v3 .oem-v3-hero-inner,
  .oem-odm-v3 .oem-v3-contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .oem-odm-v3 .oem-v3-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .oem-odm-v3 .oem-v3-services-grid,
  .oem-odm-v3 .oem-v3-stats-grid {
    grid-template-columns: 1fr;
  }

  .oem-odm-v3 .oem-v3-process-list {
    grid-template-columns: 1fr 1fr;
  }
}
