/* Organic Mr.Teamwork Add-ons - Organic Hero & Value Props Banner Styles */

.omt-organic-hero-wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.omt-organic-hero-card {
  position: relative;
  background-color: #F6F3EE;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #EBE5DA;
  display: flex;
  flex-direction: column;
}

/* -------------------------------------------------------------------------
   BACKGROUND IMAGE & OVERLAY LAYERS
------------------------------------------------------------------------- */
.omt-hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}

.omt-hero-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

/* -------------------------------------------------------------------------
   HERO MAIN GRID (TOP HALF)
------------------------------------------------------------------------- */
.omt-hero-main-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  padding: 56px 64px 44px 64px;
  align-items: center;
}

/* Left Text Column */
.omt-hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.omt-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #2D4C36;
  margin-bottom: 16px;
}

.omt-hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 600;
  color: #132B1C;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.omt-hero-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4A564C;
  margin: 0 0 32px 0;
  max-width: 440px;
}

/* Dual CTA Buttons */
.omt-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.omt-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.omt-hero-btn i,
.omt-hero-btn svg,
.omt-hero-eyebrow i,
.omt-hero-eyebrow svg {
  width: 1em;
  height: 1em;
  font-size: 16px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
  flex-shrink: 0;
}

.omt-hero-btn-primary {
  background-color: #132B1C;
  color: #FFFFFF !important;
  border: 1px solid #132B1C;
  box-shadow: 0 4px 14px rgba(19, 43, 28, 0.2);
}

.omt-hero-btn-primary:hover {
  background-color: #1D3F2A;
  border-color: #1D3F2A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 43, 28, 0.3);
}

.omt-hero-btn-secondary {
  background-color: transparent;
  color: #132B1C !important;
  border: 1.5px solid #132B1C;
}

.omt-hero-btn-secondary:hover {
  background-color: #132B1C;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------
   RIGHT COLUMN: VIDEO PLAYER CONTAINER
------------------------------------------------------------------------- */
.omt-hero-media-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.omt-hero-video-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
  background-color: #111A13;
}

/* Aspect Ratios */
.omt-hero-aspect-16-9 {
  padding-top: 56.25%;
}

.omt-hero-aspect-4-3 {
  padding-top: 75%;
}

.omt-hero-aspect-21-9 {
  padding-top: 42.85%;
}

.omt-hero-aspect-1-1 {
  padding-top: 100%;
}

.omt-hero-video-player,
.omt-hero-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  border: none;
}

/* Demo Placeholder Video Box */
.omt-hero-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.omt-video-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #132B1C 0%, #2D4C36 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.omt-video-play-button {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.omt-video-play-button svg {
  margin-left: 3px;
}

.omt-hero-video-frame:hover .omt-video-play-button {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.35);
}

.omt-video-demo-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Floating Circular Badge on Video Top-Right */
.omt-hero-floating-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 98px;
  height: 98px;
  background-color: #F8F5EF;
  border: 1px solid #EBE4D6;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: omtFloat 4s ease-in-out infinite;
}

.omt-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
}

.omt-badge-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #132B1C;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: uppercase;
}

@keyframes omtFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* -------------------------------------------------------------------------
   BOTTOM VALUE PROPOSITIONS STRIP
------------------------------------------------------------------------- */
.omt-hero-value-strip {
  position: relative;
  z-index: 3;
  background-color: #FAF8F5;
  border-top: 1px solid #E8E2D5;
  padding: 24px 48px;
}

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

.omt-value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
  position: relative;
}

.omt-value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #E2DBCF;
}

.omt-value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #132B1C;
}

.omt-value-text {
  display: flex;
  flex-direction: column;
}

.omt-value-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #132B1C;
  margin: 0 0 3px 0;
}

.omt-value-subtitle {
  font-size: 12px;
  color: #637065;
  margin: 0;
  line-height: 1.3;
}

/* -------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .omt-hero-main-grid {
    grid-template-columns: 1fr;
    padding: 40px 32px 32px 32px;
    gap: 36px;
  }

  .omt-hero-headline {
    font-size: 42px;
  }

  .omt-value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .omt-value-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .omt-hero-main-grid {
    padding: 28px 20px;
  }

  .omt-hero-headline {
    font-size: 32px;
  }

  .omt-hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .omt-hero-btn {
    width: 100%;
  }

  .omt-hero-floating-badge {
    top: 10px;
    right: 10px;
    width: 82px;
    height: 82px;
  }

  .omt-badge-title {
    font-size: 8.5px;
  }

  .omt-hero-value-strip {
    padding: 20px;
  }

  .omt-value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
